[Python-checkins] r60347 - python/trunk/Include/unicodeobject.h

neal.norwitz python-checkins at python.org
Sun Jan 27 08:41:33 CET 2008


Author: neal.norwitz
Date: Sun Jan 27 08:41:33 2008
New Revision: 60347

Modified:
   python/trunk/Include/unicodeobject.h
Log:
Add stdarg include for va_list to get this to compile on cygwin

Modified: python/trunk/Include/unicodeobject.h
==============================================================================
--- python/trunk/Include/unicodeobject.h	(original)
+++ python/trunk/Include/unicodeobject.h	Sun Jan 27 08:41:33 2008
@@ -1,6 +1,8 @@
 #ifndef Py_UNICODEOBJECT_H
 #define Py_UNICODEOBJECT_H
 
+#include <stdarg.h>
+
 /*
 
 Unicode implementation based on original code by Fredrik Lundh,


More information about the Python-checkins mailing list