]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed to work for ppc and cfm68k
authorJack Jansen <jack.jansen@cwi.nl>
Mon, 19 Aug 1996 15:10:50 +0000 (15:10 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Mon, 19 Aug 1996 15:10:50 +0000 (15:10 +0000)
Mac/Python/macshlglue.c

index 9753460a16201eea2764ec5dbc2939ee4b66bba2..5db7567dd774e691266cc9b0b3cd28306c0f7852 100644 (file)
@@ -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 ) {