[pypy-svn] r51524 - pypy/dist/pypy/lib/app_test/ctypes

pedronis at codespeak.net pedronis at codespeak.net
Fri Feb 15 13:46:17 CET 2008


Author: pedronis
Date: Fri Feb 15 13:46:14 2008
New Revision: 51524

Modified:
   pypy/dist/pypy/lib/app_test/ctypes/_ctypes_test.c
Log:
pedantic change of include order



Modified: pypy/dist/pypy/lib/app_test/ctypes/_ctypes_test.c
==============================================================================
--- pypy/dist/pypy/lib/app_test/ctypes/_ctypes_test.c	(original)
+++ pypy/dist/pypy/lib/app_test/ctypes/_ctypes_test.c	Fri Feb 15 13:46:14 2008
@@ -8,11 +8,11 @@
 #define EXPORT(x) x
 #endif
 
-#include <wchar.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include <math.h>
 #include <string.h>
+#include <wchar.h>
+#include <stdio.h>
 
 #define HAVE_LONG_LONG
 #define LONG_LONG long long



More information about the Pypy-commit mailing list