bpo-37731: Reorder includes in xmltok.c to avoid redefinition of _POSIX_C_SOURCE (GH-16733)
This commit is contained in:
parent
547c60c96e
commit
8177404d52
|
@ -30,6 +30,14 @@
|
||||||
USE OR OTHER DEALINGS IN THE SOFTWARE.
|
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 <stddef.h>
|
||||||
#include <string.h> /* memcpy */
|
#include <string.h> /* memcpy */
|
||||||
|
|
||||||
|
@ -42,14 +50,6 @@
|
||||||
# include <stdbool.h>
|
# include <stdbool.h>
|
||||||
#endif
|
#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 "expat_external.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
#include "xmltok.h"
|
#include "xmltok.h"
|
||||||
|
|
Loading…
Reference in New Issue