Commit d674163a authored by Jack Jansen's avatar Jack Jansen

The init routine for MacOS had a non-standard name. Changed to

initMacOS().
parent a5a49818
...@@ -37,7 +37,7 @@ extern void initcmath(); ...@@ -37,7 +37,7 @@ extern void initcmath();
#endif #endif
extern void initparser(); extern void initparser();
extern void initmac(); extern void initmac();
extern void MacOS_Init(); extern void initMacOS();
extern void initregex(); extern void initregex();
extern void initstrop(); extern void initstrop();
extern void initstruct(); extern void initstruct();
...@@ -169,7 +169,7 @@ struct _inittab _PyImport_Inittab[] = { ...@@ -169,7 +169,7 @@ struct _inittab _PyImport_Inittab[] = {
#endif #endif
{"parser", initparser}, {"parser", initparser},
{"mac", initmac}, {"mac", initmac},
{"MacOS", MacOS_Init}, {"MacOS", initMacOS},
{"regex", initregex}, {"regex", initregex},
{"strop", initstrop}, {"strop", initstrop},
{"struct", initstruct}, {"struct", initstruct},
......
...@@ -707,7 +707,7 @@ static PyMethodDef MacOS_Methods[] = { ...@@ -707,7 +707,7 @@ static PyMethodDef MacOS_Methods[] = {
void void
MacOS_Init() initMacOS()
{ {
PyObject *m, *d; PyObject *m, *d;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment