]> granicus.if.org Git - python/commitdiff
Got rid of __SC__ ifdefs.
authorJack Jansen <jack.jansen@cwi.nl>
Tue, 11 Jul 2000 22:37:03 +0000 (22:37 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Tue, 11 Jul 2000 22:37:03 +0000 (22:37 +0000)
Mac/Include/macglue.h
Mac/Modules/macmodule.c
Mac/Python/macgetcompiler.c

index 5767368bda8a1c1877b0949b3d3f599f10326c66..6785dff3ff0f875b1f91869441e2697b2d70c870 100644 (file)
@@ -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 */
index ba545c3b9278fb124d48f7cc550fab9357dc8118..600b9fcb0989894542ee58dcac3617b3851411ec 100644 (file)
@@ -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 */
 
index 39f3a2b191121c0f48c13e974a9e92247b227827..d7f535fefcf801900c866a286ec4424c7a6a5f58 100644 (file)
@@ -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)