Commit a06f13dc authored by Jack Jansen's avatar Jack Jansen

Fixed to work for ppc and cfm68k

parent 7e124ea8
......@@ -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 ) {
......
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