[pypy-svn] r50587 - pypy/dist/pypy/translator/c/src

cfbolz at codespeak.net cfbolz at codespeak.net
Mon Jan 14 13:30:26 CET 2008


Author: cfbolz
Date: Mon Jan 14 13:30:25 2008
New Revision: 50587

Modified:
   pypy/dist/pypy/translator/c/src/ll_strtod.h
Log:
(bigdog): add a necessary include for windows


Modified: pypy/dist/pypy/translator/c/src/ll_strtod.h
==============================================================================
--- pypy/dist/pypy/translator/c/src/ll_strtod.h	(original)
+++ pypy/dist/pypy/translator/c/src/ll_strtod.h	Mon Jan 14 13:30:25 2008
@@ -1,6 +1,10 @@
 #ifndef LL_STRTOD_H
 #define LL_STRTOD_H
 
+#ifdef MS_WINDOWS
+#include <winsock2.h>
+#endif
+
 #include <locale.h>
 #include <ctype.h>
 #include <string.h>



More information about the Pypy-commit mailing list