diff options
author | Dong-hee Na <donghee.na@python.org> | 2021-10-14 15:59:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 15:59:56 (GMT) |
commit | d413c503636cde2a6ab0ada25dccb0134633a8e6 (patch) | |
tree | 29458ca0c9b3513314a1ca6de089ac4133653515 /Modules/expat | |
parent | 3b3d30e8f78271a488965c9cd11136e1aa890757 (diff) | |
download | cpython-d413c503636cde2a6ab0ada25dccb0134633a8e6.zip cpython-d413c503636cde2a6ab0ada25dccb0134633a8e6.tar.gz cpython-d413c503636cde2a6ab0ada25dccb0134633a8e6.tar.bz2 |
no-issue: Make silence about warning '_POSIX_C_SOURCE redefined' (GH-28948)
Diffstat (limited to 'Modules/expat')
-rw-r--r-- | Modules/expat/xmltok.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/expat/xmltok.c b/Modules/expat/xmltok.c index f2b6b40..5b93571 100644 --- a/Modules/expat/xmltok.c +++ b/Modules/expat/xmltok.c @@ -42,16 +42,16 @@ USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include <stddef.h> -#include <string.h> /* memcpy */ -#include <stdbool.h> - #ifdef _WIN32 # include "winconfig.h" #endif #include <expat_config.h> +#include <stddef.h> +#include <string.h> /* memcpy */ +#include <stdbool.h> + #include "expat_external.h" #include "internal.h" #include "xmltok.h" |