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,