[pypy-svn] r71180 - pypy/trunk/pypy/translator/c/src
afa at codespeak.net
afa at codespeak.net
Tue Feb 9 17:55:15 CET 2010
Author: afa
Date: Tue Feb 9 17:55:14 2010
New Revision: 71180
Modified:
pypy/trunk/pypy/translator/c/src/g_include.h
Log:
Suppress a compilation warning
Modified: pypy/trunk/pypy/translator/c/src/g_include.h
==============================================================================
--- pypy/trunk/pypy/translator/c/src/g_include.h (original)
+++ pypy/trunk/pypy/translator/c/src/g_include.h Tue Feb 9 17:55:14 2010
@@ -17,7 +17,9 @@
#include "src/mem.h"
#include "src/exception.h"
#include "src/support.h"
+#ifndef PY_LONG_LONG
#define PY_LONG_LONG long long
+#endif
#ifndef PYPY_STANDALONE
# include "src/pyobj.h"
More information about the Pypy-commit
mailing list