[pypy-commit] pypy default: change order of includes for windows

mattip noreply at buildbot.pypy.org
Sat Nov 8 22:25:43 CET 2014


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r74401:94d9b6624f0e
Date: 2014-11-08 20:38 -0600
http://bitbucket.org/pypy/pypy/changeset/94d9b6624f0e/

Log:	change order of includes for windows

diff --git a/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c b/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
--- a/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
+++ b/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
@@ -1,10 +1,10 @@
-#include "src/precommondefs.h"
-
 #if defined(_MSC_VER) || defined(__CYGWIN__)
 #include <windows.h>
 #define MS_WIN32
 #endif
 
+#include "src/precommondefs.h"
+
 #define EXPORT(x)  RPY_EXPORTED x
 
 #include <stdlib.h>


More information about the pypy-commit mailing list