[Python-checkins] cpython (3.4): sync ordering of stddef.h includes with expat 2.1.1

benjamin.peterson python-checkins at python.org
Tue Jun 14 02:43:49 EDT 2016


https://hg.python.org/cpython/rev/aa4f7fc6d8c7
changeset:   102009:aa4f7fc6d8c7
branch:      3.4
parent:      101970:ca24b5b2d7fe
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Jun 13 23:41:19 2016 -0700
summary:
  sync ordering of stddef.h includes with expat 2.1.1

files:
  Modules/expat/xmlrole.c |  4 ++--
  Modules/expat/xmltok.c  |  4 ++--
  2 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Modules/expat/xmlrole.c b/Modules/expat/xmlrole.c
--- a/Modules/expat/xmlrole.c
+++ b/Modules/expat/xmlrole.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 "xmlrole.h"
diff --git a/Modules/expat/xmltok.c b/Modules/expat/xmltok.c
--- 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"

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list