diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-06-04 22:02:02 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-06-04 22:02:02 (GMT) |
commit | d4d24cd96b3e2c5eb5294e47337528b587b5ee65 (patch) | |
tree | bb4fe98aee66048c7a995720b2be2596b23c1a69 /Mac/Modules/macmodule.c | |
parent | 021da55579bde93b6cc159e6aa7080218c00644c (diff) | |
download | cpython-d4d24cd96b3e2c5eb5294e47337528b587b5ee65.zip cpython-d4d24cd96b3e2c5eb5294e47337528b587b5ee65.tar.gz cpython-d4d24cd96b3e2c5eb5294e47337528b587b5ee65.tar.bz2 |
Removed USE_STDWIN support.
Diffstat (limited to 'Mac/Modules/macmodule.c')
-rw-r--r-- | Mac/Modules/macmodule.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index 74c1243..a100cf5 100644 --- a/Mac/Modules/macmodule.c +++ b/Mac/Modules/macmodule.c @@ -31,17 +31,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <string.h> #include <errno.h> -#ifdef THINK_C -#include "unix.h" -#undef S_IFMT -#undef S_IFDIR -#undef S_IFCHR -#undef S_IFBLK -#undef S_IFREG -#undef S_ISDIR -#undef S_ISREG -#endif /* THINK_C */ - #ifndef TARGET_API_MAC_CARBON_NOTYET /* XXXX Skip for Carbon, for now */ #include "macstat.h" @@ -116,7 +105,7 @@ struct dirent * readdir Py_PROTO((DIR *)); int rmdir Py_PROTO((const char *path)); int sync Py_PROTO((void)); -#if defined(THINK_C) || defined(__SC__) +#if defined(__SC__) int unlink Py_PROTO((char *)); #else int unlink Py_PROTO((const char *)); |