diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1998-07-01 15:48:54 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1998-07-01 15:48:54 (GMT) |
commit | d674163a0b02dc03fc2acc60451980820c3b54aa (patch) | |
tree | dcf10f166114943a5f70b60dbf5bc953c5f2d357 /Mac/Modules/macosmodule.c | |
parent | a5a49818aa433a50d0d8b5f5937ef0e0149601b2 (diff) | |
download | cpython-d674163a0b02dc03fc2acc60451980820c3b54aa.zip cpython-d674163a0b02dc03fc2acc60451980820c3b54aa.tar.gz cpython-d674163a0b02dc03fc2acc60451980820c3b54aa.tar.bz2 |
The init routine for MacOS had a non-standard name. Changed to
initMacOS().
Diffstat (limited to 'Mac/Modules/macosmodule.c')
-rw-r--r-- | Mac/Modules/macosmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/macosmodule.c b/Mac/Modules/macosmodule.c index a17300d..68f9b48 100644 --- a/Mac/Modules/macosmodule.c +++ b/Mac/Modules/macosmodule.c @@ -707,7 +707,7 @@ static PyMethodDef MacOS_Methods[] = { void -MacOS_Init() +initMacOS() { PyObject *m, *d; |