xmlparse.c: Adjust _GNU_SOURCE define in favor of Python (#77)
diff --git a/expat/lib/xmlparse.c b/expat/lib/xmlparse.c
index ae91319..c430541 100644
--- a/expat/lib/xmlparse.c
+++ b/expat/lib/xmlparse.c
@@ -5,7 +5,7 @@
 */
 
 #if !defined(_GNU_SOURCE)
-# define _GNU_SOURCE                    /* syscall prototype */
+# define _GNU_SOURCE 1                  /* syscall prototype */
 #endif
 
 #include <stddef.h>