From: Jack Jansen Date: Mon, 19 Aug 1996 11:01:05 +0000 (+0000) Subject: Dummy SpinCursor() if __CFM68K__ is defined X-Git-Tag: v1.4b3~144 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ac70afed1974d8174ae32426ad54eaa4e55c511;p=thirdparty%2FPython%2Fcpython.git Dummy SpinCursor() if __CFM68K__ is defined --- diff --git a/Mac/Python/macglue.c b/Mac/Python/macglue.c index e6739b532b5a..7af6e132df18 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