aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-11-06 21:29:43 -0800
committerGitHub <noreply@github.com>2019-11-06 21:29:43 -0800
commit089e5f52a34377193a9e6c03088114b14c8507af (patch)
tree196484df34f5245d51df8e0b9c330b8541568ce1
parentbpo-37731: Reorder includes in xmltok.c to avoid redefinition of _POSIX_C_SOU... (diff)
downloadcpython-089e5f52a34377193a9e6c03088114b14c8507af.tar.gz
cpython-089e5f52a34377193a9e6c03088114b14c8507af.tar.bz2
cpython-089e5f52a34377193a9e6c03088114b14c8507af.zip
bpo-37731: Squish another _POSIX_C_SOURCE redefinition problem in expat. (GH-17077)
-rw-r--r--Modules/expat/xmlparse.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/expat/xmlparse.c b/Modules/expat/xmlparse.c
index e740f0e19c7..09ccacb5aae 100644
--- a/Modules/expat/xmlparse.c
+++ b/Modules/expat/xmlparse.c
@@ -39,6 +39,12 @@
# define _CRT_RAND_S
#endif
+#ifdef _WIN32
+# include "winconfig.h"
+#elif defined(HAVE_EXPAT_CONFIG_H)
+# include <expat_config.h>
+#endif /* ndef _WIN32 */
+
#include <stddef.h>
#include <string.h> /* memset(), memcpy() */
#include <assert.h>
@@ -58,12 +64,6 @@
#define XML_BUILDING_EXPAT 1
-#ifdef _WIN32
-# include "winconfig.h"
-#elif defined(HAVE_EXPAT_CONFIG_H)
-# include <expat_config.h>
-#endif /* ndef _WIN32 */
-
#include "ascii.h"
#include "expat.h"
#include "siphash.h"