From cfb41c4985e8fe5f2044c703160e5195044235df Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Sun, 27 Jan 2008 07:41:33 +0000 Subject: [PATCH] Add stdarg include for va_list to get this to compile on cygwin --- Include/unicodeobject.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 0c21446f139..2c11bfd4524 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -1,6 +1,8 @@ #ifndef Py_UNICODEOBJECT_H #define Py_UNICODEOBJECT_H +#include + /* Unicode implementation based on original code by Fredrik Lundh,