diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-08-19 11:17:33 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-08-19 11:17:33 (GMT) |
commit | 9ff06cea7f120df18bbee2f7a19289fae5fca069 (patch) | |
tree | 55df872bda9ff833de4b9fe342171e581f527814 | |
parent | cb7f3fc72c9e40bd9cb6771abb5505d96b2020a2 (diff) | |
download | cpython-9ff06cea7f120df18bbee2f7a19289fae5fca069.zip cpython-9ff06cea7f120df18bbee2f7a19289fae5fca069.tar.gz cpython-9ff06cea7f120df18bbee2f7a19289fae5fca069.tar.bz2 |
Guido: changed __sinit to __initialize for CFM68K.
-rw-r--r-- | Mac/Python/macshlglue.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Python/macshlglue.c b/Mac/Python/macshlglue.c index 9459140..9753460 100644 --- a/Mac/Python/macshlglue.c +++ b/Mac/Python/macshlglue.c @@ -42,8 +42,8 @@ static FSSpec library_fss; OSErr pascal PythonCore_init(InitBlockPtr data) { - /* Initialize C++ static data (if needed) */ - __sinit(); + /* Call the MW runtime's initialization routine */ + __initialize(); if ( data == nil ) return noErr; if ( data->fragLocator.where == kOnDiskFlat ) { |