[pypy-svn] r46725 - pypy/dist/pypy/rpython/module

tismer at codespeak.net tismer at codespeak.net
Tue Sep 18 15:59:47 CEST 2007


Author: tismer
Date: Tue Sep 18 15:59:43 2007
New Revision: 46725

Modified:
   pypy/dist/pypy/rpython/module/ll_os_stat.py
Log:
activating special case for windows which has different names for the stat family - thanks to arigo

Modified: pypy/dist/pypy/rpython/module/ll_os_stat.py
==============================================================================
--- pypy/dist/pypy/rpython/module/ll_os_stat.py	(original)
+++ pypy/dist/pypy/rpython/module/ll_os_stat.py	Tue Sep 18 15:59:43 2007
@@ -187,7 +187,7 @@
         ARG1 = rffi.CCHARP
     else:
         ARG1 = rffi.INT
-    os_mystat = rffi.llexternal(name, [ARG1, STRUCT_STAT], rffi.INT,
+    os_mystat = rffi.llexternal(c_func_name, [ARG1, STRUCT_STAT], rffi.INT,
                                 includes=INCLUDES)
 
     def os_mystat_llimpl(arg):



More information about the Pypy-commit mailing list