Fixed to work for ppc and cfm68k

This commit is contained in:
Jack Jansen 1996-08-19 15:10:50 +00:00
parent 7e124ea86a
commit a06f13dc78

View file

@ -43,7 +43,11 @@ OSErr pascal
PythonCore_init(InitBlockPtr data) PythonCore_init(InitBlockPtr data)
{ {
/* Call the MW runtime's initialization routine */ /* Call the MW runtime's initialization routine */
#ifdef __CFM68K__
__initialize(); __initialize();
#else
__sinit();
#endif
if ( data == nil ) return noErr; if ( data == nil ) return noErr;
if ( data->fragLocator.where == kOnDiskFlat ) { if ( data->fragLocator.where == kOnDiskFlat ) {