diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-01-27 07:41:33 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-01-27 07:41:33 (GMT) |
commit | cfb41c4985e8fe5f2044c703160e5195044235df (patch) | |
tree | 6f699a93ba551f8c01df78fac35a50b48879a568 /Include | |
parent | e1027f9034b8a49d0ba6f42c2b1f08e006bc40f1 (diff) | |
download | cpython-cfb41c4985e8fe5f2044c703160e5195044235df.zip cpython-cfb41c4985e8fe5f2044c703160e5195044235df.tar.gz cpython-cfb41c4985e8fe5f2044c703160e5195044235df.tar.bz2 |
Add stdarg include for va_list to get this to compile on cygwin
Diffstat (limited to 'Include')
-rw-r--r-- | Include/unicodeobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
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, |