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

fijal at codespeak.net fijal at codespeak.net
Mon Nov 26 15:08:02 CET 2007


Author: fijal
Date: Mon Nov 26 15:08:00 2007
New Revision: 49162

Modified:
   pypy/dist/pypy/translator/c/src/stack.h
Log:
Ooops. Wrong include order


Modified: pypy/dist/pypy/translator/c/src/stack.h
==============================================================================
--- pypy/dist/pypy/translator/c/src/stack.h	(original)
+++ pypy/dist/pypy/translator/c/src/stack.h	Mon Nov 26 15:08:00 2007
@@ -2,6 +2,7 @@
 /************************************************************/
  /***  C header subsection: stack operations               ***/
 
+#include <unistd.h>
 
 #ifndef MAX_STACK_SIZE
 #    define MAX_STACK_SIZE (1 << 19)



More information about the Pypy-commit mailing list