summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-02-17 14:23:51 (GMT)
committerGuido van Rossum <guido@python.org>1995-02-17 14:23:51 (GMT)
commit8318f2fb8f28280c5134768c80e34a991e1ec6ed (patch)
treec4cb3a3cd581b0de0bf540da0985a4edf012d144
parent8fbf82b26eb130e733148714057e0da8b7ab0c56 (diff)
downloadcpython-8318f2fb8f28280c5134768c80e34a991e1ec6ed.zip
cpython-8318f2fb8f28280c5134768c80e34a991e1ec6ed.tar.gz
cpython-8318f2fb8f28280c5134768c80e34a991e1ec6ed.tar.bz2
add __SC__ ifdef
-rw-r--r--Mac/Modules/macmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c
index 6b5668b..fc72615 100644
--- a/Mac/Modules/macmodule.c
+++ b/Mac/Modules/macmodule.c
@@ -74,7 +74,7 @@ void closedir PROTO((DIR *));
struct dirent * readdir PROTO((DIR *));
int rmdir PROTO((const char *path));
int sync PROTO((void));
-#ifdef THINK_C
+#if defined(THINK_C) || defined(__SC__)
int unlink PROTO((char *));
#else
int unlink PROTO((const char *));