diff options
author | Seth Michael Larson <seth@python.org> | 2024-11-13 18:31:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-13 18:31:20 (GMT) |
commit | 3c9996909402fadc98e6ca2a64e75a71a7427352 (patch) | |
tree | d34ac1f674b642eebc75a066cc67b3368401ed9d /Modules/expat/expat_external.h | |
parent | 8c9c6d3c1234e730c0beb2a6123e68fe98e57ede (diff) | |
download | cpython-3c9996909402fadc98e6ca2a64e75a71a7427352.zip cpython-3c9996909402fadc98e6ca2a64e75a71a7427352.tar.gz cpython-3c9996909402fadc98e6ca2a64e75a71a7427352.tar.bz2 |
gh-126623: Update libexpat to 2.6.4, make future updates easier (GH-126792)
Update libexpat to 2.6.4, make future updates easier.
Diffstat (limited to 'Modules/expat/expat_external.h')
-rw-r--r-- | Modules/expat/expat_external.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Modules/expat/expat_external.h b/Modules/expat/expat_external.h index 12c560e..567872b 100644 --- a/Modules/expat/expat_external.h +++ b/Modules/expat/expat_external.h @@ -40,6 +40,10 @@ #ifndef Expat_External_INCLUDED #define Expat_External_INCLUDED 1 +/* Namespace external symbols to allow multiple libexpat version to + co-exist. */ +#include "pyexpatns.h" + /* External API definitions */ /* Expat tries very hard to make the API boundary very specifically @@ -64,11 +68,6 @@ compiled with the cdecl calling convention as the default since system headers may assume the cdecl convention. */ - -/* Namespace external symbols to allow multiple libexpat version to - co-exist. */ -#include "pyexpatns.h" - #ifndef XMLCALL # if defined(_MSC_VER) # define XMLCALL __cdecl |