diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-06-13 23:41:19 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-06-13 23:41:19 -0700 |
commit | af31279f301588bed55896044512de3dd24a569b (patch) | |
tree | ff2e481f85b9d130e131a4ab440079a778e6b88d /Modules/expat/xmltok.c | |
parent | d04cc8784803425ce36fd886627db251edd76a11 (diff) | |
download | cpython-af31279f301588bed55896044512de3dd24a569b.tar.gz |
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 205c07eb84..bf09dfc72b 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" |