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

mwh at codespeak.net mwh at codespeak.net
Wed Dec 7 15:19:19 CET 2005


Author: mwh
Date: Wed Dec  7 15:19:18 2005
New Revision: 20831

Modified:
   pypy/dist/pypy/translator/c/src/g_include.h
Log:
don't #include pyobj.h when building standalone


Modified: pypy/dist/pypy/translator/c/src/g_include.h
==============================================================================
--- pypy/dist/pypy/translator/c/src/g_include.h	(original)
+++ pypy/dist/pypy/translator/c/src/g_include.h	Wed Dec  7 15:19:18 2005
@@ -21,13 +21,13 @@
 
 #ifndef PYPY_STANDALONE
 #  include "src/module.h"
+#  include "src/pyobj.h"
 #endif
 
 #include "src/int.h"
 #include "src/char.h"
 #include "src/unichar.h"
 #include "src/float.h"
-#include "src/pyobj.h"
 #include "src/address.h"
 
 /*** modules ***/



More information about the Pypy-commit mailing list