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 /Modules/expat/xmltok.c | |
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
Diffstat (limited to 'Modules/expat/xmltok.c')
-rw-r--r-- | Modules/expat/xmltok.c | 4 |
1 files changed, 2 insertions, 2 deletions
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" |