From: Jack Jansen Date: Mon, 19 Aug 1996 15:10:50 +0000 (+0000) Subject: Fixed to work for ppc and cfm68k X-Git-Tag: v1.4b3~134 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a06f13dc78bc5e2437144219e6dd76f0033cd186;p=thirdparty%2FPython%2Fcpython.git Fixed to work for ppc and cfm68k --- diff --git a/Mac/Python/macshlglue.c b/Mac/Python/macshlglue.c index 9753460a1620..5db7567dd774 100644 --- a/Mac/Python/macshlglue.c +++ b/Mac/Python/macshlglue.c @@ -43,7 +43,11 @@ OSErr pascal PythonCore_init(InitBlockPtr data) { /* Call the MW runtime's initialization routine */ +#ifdef __CFM68K__ __initialize(); +#else + __sinit(); +#endif if ( data == nil ) return noErr; if ( data->fragLocator.where == kOnDiskFlat ) {