diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-06-14 06:41:19 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-06-14 06:41:19 (GMT) |
commit | 06d49bb89584921d17f3309530fc9544ef5b88c3 (patch) | |
tree | 346ccbb4239d608189e06382f8fb00cd994e0367 | |
parent | 393c75932463cc06c9fd9fa41bfe7369c1139f5f (diff) | |
download | cpython-06d49bb89584921d17f3309530fc9544ef5b88c3.zip cpython-06d49bb89584921d17f3309530fc9544ef5b88c3.tar.gz cpython-06d49bb89584921d17f3309530fc9544ef5b88c3.tar.bz2 |
sync ordering of stddef.h includes with expat 2.1.1
-rw-r--r-- | Modules/expat/xmlrole.c | 4 | ||||
-rw-r--r-- | Modules/expat/xmltok.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Modules/expat/xmlrole.c b/Modules/expat/xmlrole.c index 9a8f85d..44772e2 100644 --- a/Modules/expat/xmlrole.c +++ b/Modules/expat/xmlrole.c @@ -2,6 +2,8 @@ See the file COPYING for copying permission. */ +#include <stddef.h> + #ifdef COMPILED_FROM_DSP #include "winconfig.h" #elif defined(MACOS_CLASSIC) @@ -16,8 +18,6 @@ #endif #endif /* ndef COMPILED_FROM_DSP */ -#include <stddef.h> - #include "expat_external.h" #include "internal.h" #include "xmlrole.h" diff --git a/Modules/expat/xmltok.c b/Modules/expat/xmltok.c index 205c07e..bf09dfc 100644 --- a/Modules/expat/xmltok.c +++ b/Modules/expat/xmltok.c @@ -2,6 +2,8 @@ See the file COPYING for copying permission. */ +#include <stddef.h> + #ifdef COMPILED_FROM_DSP #include "winconfig.h" #elif defined(MACOS_CLASSIC) @@ -16,8 +18,6 @@ #endif #endif /* ndef COMPILED_FROM_DSP */ -#include <stddef.h> - #include "expat_external.h" #include "internal.h" #include "xmltok.h" |