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

fijal at codespeak.net fijal at codespeak.net
Sat Oct 20 17:18:25 CEST 2007


Author: fijal
Date: Sat Oct 20 17:18:24 2007
New Revision: 47646

Modified:
   pypy/dist/pypy/translator/c/src/g_prerequisite.h
Log:
Mute gcc warnings


Modified: pypy/dist/pypy/translator/c/src/g_prerequisite.h
==============================================================================
--- pypy/dist/pypy/translator/c/src/g_prerequisite.h	(original)
+++ pypy/dist/pypy/translator/c/src/g_prerequisite.h	Sat Oct 20 17:18:24 2007
@@ -2,8 +2,10 @@
 /**************************************************************/
 /***  this is included before any code produced by genc.py  ***/
 
+#ifndef
 #define _GNU_SOURCE  /* this must be defined before including other headers
                         in order to get a few extra functions like mremap() */
+#endif
 
 /* XXX for now we always include Python.h even to produce stand-alone
  * executables (which are *not* linked against CPython then),



More information about the Pypy-commit mailing list