summaryrefslogtreecommitdiffstats
path: root/Mac/Python/macshlglue.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-08-19 15:10:50 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-08-19 15:10:50 (GMT)
commita06f13dc78bc5e2437144219e6dd76f0033cd186 (patch)
tree0c63e384417c1b94bf8b5fdd5e3403fb5392fdd7 /Mac/Python/macshlglue.c
parent7e124ea86a4de1380a8de71661e4b23c500b2b44 (diff)
downloadcpython-a06f13dc78bc5e2437144219e6dd76f0033cd186.zip
cpython-a06f13dc78bc5e2437144219e6dd76f0033cd186.tar.gz
cpython-a06f13dc78bc5e2437144219e6dd76f0033cd186.tar.bz2
Fixed to work for ppc and cfm68k
Diffstat (limited to 'Mac/Python/macshlglue.c')
-rw-r--r--Mac/Python/macshlglue.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Python/macshlglue.c b/Mac/Python/macshlglue.c
index 9753460..5db7567 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 ) {