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

fijal at codespeak.net fijal at codespeak.net
Mon Jan 14 13:32:10 CET 2008


Author: fijal
Date: Mon Jan 14 13:32:09 2008
New Revision: 50588

Modified:
   pypy/dist/pypy/rpython/module/ll_os.py
Log:
This is no longer necessary


Modified: pypy/dist/pypy/rpython/module/ll_os.py
==============================================================================
--- pypy/dist/pypy/rpython/module/ll_os.py	(original)
+++ pypy/dist/pypy/rpython/module/ll_os.py	Mon Jan 14 13:32:09 2008
@@ -90,7 +90,7 @@
             data = {'ret_type': 'int', 'name': name}
             decls.append(decl_snippet % data)
             defs.append(def_snippet % data)
-        h_source = ['#include "sys/wait.h"'] + decls + defs
+        h_source = decls + defs
 
         self.compilation_info = self.compilation_info.merge(
             ExternalCompilationInfo(



More information about the Pypy-commit mailing list