summaryrefslogtreecommitdiff
path: root/Python/strerror.c
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2003-11-20 01:44:59 +0000
committerJack Jansen <jack.jansen@cwi.nl>2003-11-20 01:44:59 +0000
commit89658fe93e349fc99942b681e41934acce491b9f (patch)
tree669bca9ab3454c0a4f2cb5668fb0c10dc87efc16 /Python/strerror.c
parentd928e0fc503219f9f399bc131bac92527fa145ca (diff)
downloadcpython-89658fe93e349fc99942b681e41934acce491b9f.tar.gz
Getting rid of all the code inside #ifdef macintosh too.
Diffstat (limited to 'Python/strerror.c')
-rw-r--r--Python/strerror.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/Python/strerror.c b/Python/strerror.c
index aeb7dd5734..55f8342ec4 100644
--- a/Python/strerror.c
+++ b/Python/strerror.c
@@ -17,8 +17,3 @@ strerror(int err)
PyOS_snprintf(buf, sizeof(buf), "Unknown errno %d", err);
return buf;
}
-
-#ifdef macintosh
-int sys_nerr = 0;
-char *sys_errlist[1] = 0;
-#endif