[pypy-commit] pypy kill-exported-symbols-list: fix

arigo noreply at buildbot.pypy.org
Thu Oct 23 15:08:24 CEST 2014


Author: Armin Rigo <arigo at tunes.org>
Branch: kill-exported-symbols-list
Changeset: r74115:6d8e41d687fa
Date: 2014-10-23 15:08 +0200
http://bitbucket.org/pypy/pypy/changeset/6d8e41d687fa/

Log:	fix

diff --git a/pypy/module/cpyext/test/dotted.c b/pypy/module/cpyext/test/dotted.c
--- a/pypy/module/cpyext/test/dotted.c
+++ b/pypy/module/cpyext/test/dotted.c
@@ -4,7 +4,8 @@
     {NULL, NULL}
 };
 
-void initdotted(void)
+PyMODINIT_FUNC
+initdotted(void)
 {
     Py_InitModule("pypy.module.cpyext.test.dotted", dotted_functions);
 }


More information about the pypy-commit mailing list