diff options
Diffstat (limited to 'PC')
-rw-r--r-- | PC/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/config.c b/PC/config.c index 91f15b5..6209d7e 100644 --- a/PC/config.c +++ b/PC/config.c @@ -74,7 +74,7 @@ extern PyObject* PyInit__opcode(void); /* -- ADDMODULE MARKER 1 -- */ extern PyObject* PyMarshal_Init(void); -extern PyObject* PyInit_imp(void); +extern PyObject* PyInit__imp(void); struct _inittab _PyImport_Inittab[] = { @@ -147,7 +147,7 @@ struct _inittab _PyImport_Inittab[] = { {"marshal", PyMarshal_Init}, /* This lives it with import.c */ - {"_imp", PyInit_imp}, + {"_imp", PyInit__imp}, /* These entries are here for sys.builtin_module_names */ {"builtins", NULL}, |