[pypy-svn] r75257 - pypy/trunk/pypy/translator/c/src

afa at codespeak.net afa at codespeak.net
Fri Jun 11 09:50:14 CEST 2010


Author: afa
Date: Fri Jun 11 09:50:11 2010
New Revision: 75257

Modified:
   pypy/trunk/pypy/translator/c/src/commondefs.h
Log:
Avoid a compilation warning on Windows


Modified: pypy/trunk/pypy/translator/c/src/commondefs.h
==============================================================================
--- pypy/trunk/pypy/translator/c/src/commondefs.h	(original)
+++ pypy/trunk/pypy/translator/c/src/commondefs.h	Fri Jun 11 09:50:11 2010
@@ -82,5 +82,7 @@
 #define Py_HUGE_VAL HUGE_VAL
 
 #ifdef _WIN32
+#ifndef MS_WINDOWS
 #  define MS_WINDOWS    /* a synonym */
 #endif
+#endif



More information about the Pypy-commit mailing list