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

rhymes at codespeak.net rhymes at codespeak.net
Tue Jul 25 06:45:23 CEST 2006


Author: rhymes
Date: Tue Jul 25 06:45:14 2006
New Revision: 30494

Modified:
   pypy/dist/pypy/translator/c/src/ll_osdefs.h
Log:
fix for windows compilation. patch submitted by Scott Dial.

Modified: pypy/dist/pypy/translator/c/src/ll_osdefs.h
==============================================================================
--- pypy/dist/pypy/translator/c/src/ll_osdefs.h	(original)
+++ pypy/dist/pypy/translator/c/src/ll_osdefs.h	Tue Jul 25 06:45:14 2006
@@ -42,7 +42,9 @@
 
 #include <sys/types.h>
 
+#if !defined(MS_WINDOWS)
 #include <sys/mman.h>
+#endif
 
 #ifdef HAVE_STROPTS_H
 #include <stropts.h>



More information about the Pypy-commit mailing list