From 7ac70afed1974d8174ae32426ad54eaa4e55c511 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 19 Aug 1996 11:01:05 +0000 Subject: [PATCH] Dummy SpinCursor() if __CFM68K__ is defined --- Mac/Python/macglue.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index e6739b532b5..7af6e132df1 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