summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2008-01-27 07:41:33 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2008-01-27 07:41:33 (GMT)
commitcfb41c4985e8fe5f2044c703160e5195044235df (patch)
tree6f699a93ba551f8c01df78fac35a50b48879a568 /Include
parente1027f9034b8a49d0ba6f42c2b1f08e006bc40f1 (diff)
downloadcpython-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.h2
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,