Author: Matti Picus <[email protected]>
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;
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to