[pypy-svn] r46247 - pypy/branch/pypy-more-rtti-inprogress/rpython/module

santagada at codespeak.net santagada at codespeak.net
Sun Sep 2 23:53:13 CEST 2007


Author: santagada
Date: Sun Sep  2 23:53:12 2007
New Revision: 46247

Modified:
   pypy/branch/pypy-more-rtti-inprogress/rpython/module/ll_os.py
Log:
in the wait manpage for os x and freebsd this is the right place for the signal header.


Modified: pypy/branch/pypy-more-rtti-inprogress/rpython/module/ll_os.py
==============================================================================
--- pypy/branch/pypy-more-rtti-inprogress/rpython/module/ll_os.py	(original)
+++ pypy/branch/pypy-more-rtti-inprogress/rpython/module/ll_os.py	Sun Sep  2 23:53:12 2007
@@ -34,7 +34,7 @@
     if not sys.platform.startswith('win'):
         _includes_ += ['dirent.h', 'sys/stat.h',
                        'sys/times.h', 'utime.h', 'sys/types.h', 'unistd.h',
-                       'signal.h', 'wait.h']
+                       'signal.h', 'sys/wait.h']
 
         CLOCK_T = platform.SimpleType('clock_t', rffi.INT)
 


More information about the pypy-svn mailing list