From: Guido van Rossum Date: Fri, 17 Feb 1995 14:23:51 +0000 (+0000) Subject: add __SC__ ifdef X-Git-Tag: v1.2b4~236 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8318f2fb8f28280c5134768c80e34a991e1ec6ed;p=thirdparty%2FPython%2Fcpython.git add __SC__ ifdef --- diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index 6b5668b98cd5..fc7261537733 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 *));