From: Jack Jansen Date: Tue, 11 Jul 2000 22:37:03 +0000 (+0000) Subject: Got rid of __SC__ ifdefs. X-Git-Tag: v2.0b1~878 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e17fd2a5afab84e58e60df87b02b9c7139a57248;p=python Got rid of __SC__ ifdefs. --- diff --git a/Mac/Include/macglue.h b/Mac/Include/macglue.h index 5767368bda..6785dff3ff 100644 --- a/Mac/Include/macglue.h +++ b/Mac/Include/macglue.h @@ -49,10 +49,6 @@ typedef struct { #define HAVE_UNIVERSAL_HEADERS #endif -#ifdef SYMANTEC__CFM68K__ -#pragma lib_export on -#endif - #ifdef USE_GUSI1 void PyMac_FixGUSIcd(void); /* Workaround for GUSI chdir() call */ extern void PyMac_SetGUSISpin(void); /* Install our private GUSI spin routine */ diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index ba545c3b92..600b9fcb09 100644 --- a/Mac/Modules/macmodule.c +++ b/Mac/Modules/macmodule.c @@ -105,11 +105,7 @@ struct dirent * readdir(DIR *); int rmdir(const char *path); int sync(void); -#if defined(__SC__) -int unlink(char *); -#else int unlink(const char *); -#endif #endif /* USE_GUSI */ diff --git a/Mac/Python/macgetcompiler.c b/Mac/Python/macgetcompiler.c index 39f3a2b191..d7f535fefc 100644 --- a/Mac/Python/macgetcompiler.c +++ b/Mac/Python/macgetcompiler.c @@ -69,12 +69,8 @@ PERFORMANCE OF THIS SOFTWARE. #endif #ifdef MPW -#ifdef __SC__ -#define COMPILER " [Symantec MPW]" -#else #define COMPILER " [Apple MPW]" #endif -#endif const char * Py_GetCompiler(void)