[pypy-commit] pypy py3.3: Fix compilation, I think

amauryfa noreply at buildbot.pypy.org
Tue Dec 30 18:02:49 CET 2014


Author: Amaury Forgeot d'Arc <amauryfa at gmail.com>
Branch: py3.3
Changeset: r75168:4c7c31a7377d
Date: 2014-12-30 18:02 +0100
http://bitbucket.org/pypy/pypy/changeset/4c7c31a7377d/

Log:	Fix compilation, I think

diff --git a/pypy/module/faulthandler/faulthandler.h b/pypy/module/faulthandler/faulthandler.h
--- a/pypy/module/faulthandler/faulthandler.h
+++ b/pypy/module/faulthandler/faulthandler.h
@@ -4,16 +4,16 @@
 #include <signal.h>
 #include "src/precommondefs.h"
 
-RPY_EXPORTED_FOR_TESTS int pypy_faulthandler_read_null(void);
-RPY_EXPORTED_FOR_TESTS void pypy_faulthandler_sigsegv(void);
-RPY_EXPORTED_FOR_TESTS int pypy_faulthandler_sigfpe(void);
-RPY_EXPORTED_FOR_TESTS void pypy_faulthandler_sigabrt();
+RPY_EXTERN int pypy_faulthandler_read_null(void);
+RPY_EXTERN void pypy_faulthandler_sigsegv(void);
+RPY_EXTERN int pypy_faulthandler_sigfpe(void);
+RPY_EXTERN void pypy_faulthandler_sigabrt();
 #ifdef SIGBUS
-RPY_EXPORTED_FOR_TESTS void pypy_faulthandler_sigbus(void);
+RPY_EXTERN void pypy_faulthandler_sigbus(void);
 #endif
 
 #ifdef SIGILL
-RPY_EXPORTED_FOR_TESTS void pypy_faulthandler_sigill(void);
+RPY_EXTERN void pypy_faulthandler_sigill(void);
 #endif
 
 #endif  /* PYPY_FAULTHANDLER_H */


More information about the pypy-commit mailing list