commit | cfb41c4985e8fe5f2044c703160e5195044235df | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Sun Jan 27 07:41:33 2008 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Sun Jan 27 07:41:33 2008 +0000 |
tree | 6f699a93ba551f8c01df78fac35a50b48879a568 | |
parent | e1027f9034b8a49d0ba6f42c2b1f08e006bc40f1 [diff] |
Add stdarg include for va_list to get this to compile on cygwin
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 0c21446..2c11bfd 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h
@@ -1,6 +1,8 @@ #ifndef Py_UNICODEOBJECT_H #define Py_UNICODEOBJECT_H +#include <stdarg.h> + /* Unicode implementation based on original code by Fredrik Lundh,