[pypy-commit] pypy default: fix: non-exported globals

mattip noreply at buildbot.pypy.org
Tue Nov 11 22:16:51 CET 2014


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r74463:598730a422d2
Date: 2014-11-11 20:05 -0600
http://bitbucket.org/pypy/pypy/changeset/598730a422d2/

Log:	fix: non-exported globals

diff --git a/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c b/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
--- a/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
+++ b/pypy/module/test_lib_pypy/ctypes_tests/_ctypes_test.c
@@ -316,8 +316,8 @@
 {
 }
 
-EXPORT(LONG_LONG) last_tf_arg_s;
-EXPORT(unsigned LONG_LONG) last_tf_arg_u;
+LONG_LONG last_tf_arg_s;
+unsigned LONG_LONG last_tf_arg_u;
 
 struct BITS {
 	int A: 1, B:2, C:3, D:4, E: 5, F: 6, G: 7, H: 8, I: 9;


More information about the pypy-commit mailing list