diff options
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index 653faaf..28029d5 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -24,11 +24,11 @@ extern "C" { /* -- ADDMODULE MARKER 1 -- */ -extern void PyMarshal_Init(void); -extern void initimp(void); -extern void initgc(void); -extern void init_ast(void); -extern void _PyWarnings_Init(void); +extern PyObject* PyMarshal_Init(void); +extern PyObject* PyInit_imp(void); +extern PyObject* PyInit_gc(void); +extern PyObject* PyInit__ast(void); +extern PyObject* _PyWarnings_Init(void); struct _inittab _PyImport_Inittab[] = { @@ -38,10 +38,10 @@ struct _inittab _PyImport_Inittab[] = { {"marshal", PyMarshal_Init}, /* This lives in import.c */ - {"imp", initimp}, + {"imp", PyInit_imp}, /* This lives in Python/Python-ast.c */ - {"_ast", init_ast}, + {"_ast", PyInit__ast}, /* These entries are here for sys.builtin_module_names */ {"__main__", NULL}, @@ -49,7 +49,7 @@ struct _inittab _PyImport_Inittab[] = { {"sys", NULL}, /* This lives in gcmodule.c */ - {"gc", initgc}, + {"gc", PyInit_gc}, /* This lives in _warnings.c */ {"_warnings", _PyWarnings_Init}, |