diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-10-12 19:14:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-12 19:14:11 (GMT) |
commit | 8177404d520e81f16324a900f093adf3856d33f8 (patch) | |
tree | b5dd1521e8e91744c956f9f480c4d2de4dad3d43 /Modules/expat | |
parent | 547c60c96e0119e559fb7312beea5fb36be66fdc (diff) | |
download | cpython-8177404d520e81f16324a900f093adf3856d33f8.zip cpython-8177404d520e81f16324a900f093adf3856d33f8.tar.gz cpython-8177404d520e81f16324a900f093adf3856d33f8.tar.bz2 |
bpo-37731: Reorder includes in xmltok.c to avoid redefinition of _POSIX_C_SOURCE (GH-16733)
Diffstat (limited to 'Modules/expat')
-rw-r--r-- | Modules/expat/xmltok.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Modules/expat/xmltok.c b/Modules/expat/xmltok.c index 11e9d1c..54cfedb 100644 --- a/Modules/expat/xmltok.c +++ b/Modules/expat/xmltok.c @@ -30,6 +30,14 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. */ +#ifdef _WIN32 +# include "winconfig.h" +#else +# ifdef HAVE_EXPAT_CONFIG_H +# include <expat_config.h> +# endif +#endif /* ndef _WIN32 */ + #include <stddef.h> #include <string.h> /* memcpy */ @@ -42,14 +50,6 @@ # include <stdbool.h> #endif -#ifdef _WIN32 -# include "winconfig.h" -#else -# ifdef HAVE_EXPAT_CONFIG_H -# include <expat_config.h> -# endif -#endif /* ndef _WIN32 */ - #include "expat_external.h" #include "internal.h" #include "xmltok.h" |