[pypy-svn] r79779 - pypy/trunk/pypy/rpython/tool

afa at codespeak.net afa at codespeak.net
Fri Dec 3 13:54:51 CET 2010


Author: afa
Date: Fri Dec  3 13:54:49 2010
New Revision: 79779

Modified:
   pypy/trunk/pypy/rpython/tool/rffi_platform.py
Log:
There is no uint64_t anywhere in PyPy; remove <stdint.h> which is not supported on all platforms.


Modified: pypy/trunk/pypy/rpython/tool/rffi_platform.py
==============================================================================
--- pypy/trunk/pypy/rpython/tool/rffi_platform.py	(original)
+++ pypy/trunk/pypy/rpython/tool/rffi_platform.py	Fri Dec  3 13:54:49 2010
@@ -639,7 +639,6 @@
 C_HEADER = """
 #include <stdio.h>
 #include <stddef.h>   /* for offsetof() */
-#include <stdint.h>   /* FreeBSD: for uint64_t */
 
 void dump(char* key, int value) {
     printf("%s: %d\\n", key, value);



More information about the Pypy-commit mailing list