summaryrefslogtreecommitdiffstats
path: root/Mac
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-08-19 11:01:05 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-08-19 11:01:05 (GMT)
commit7ac70afed1974d8174ae32426ad54eaa4e55c511 (patch)
tree34d62bb55a146535a9cdf90f76f9142caf2d77f2 /Mac
parente5649c75f072bfb7e3ada737d57b2ab8e41f078b (diff)
downloadcpython-7ac70afed1974d8174ae32426ad54eaa4e55c511.zip
cpython-7ac70afed1974d8174ae32426ad54eaa4e55c511.tar.gz
cpython-7ac70afed1974d8174ae32426ad54eaa4e55c511.tar.bz2
Dummy SpinCursor() if __CFM68K__ is defined
Diffstat (limited to 'Mac')
-rw-r--r--Mac/Python/macglue.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c
index e6739b5..7af6e13 100644
--- a/Mac/Python/macglue.c
+++ b/Mac/Python/macglue.c
@@ -153,6 +153,16 @@ PyMac_FixGUSIcd()
if (PBHSetVol(&pb, 0) != noErr)
return;
}
+
+#ifdef __CFM68K__
+/*
+** There is no SpinCursor for cfm68k.
+*/
+SpinCursor(dummy)
+int dummy;
+{
+}
+#endif
#endif