summaryrefslogtreecommitdiffstats
path: root/Python/strerror.c
diff options
context:
space:
mode:
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 aeb7dd5..55f8342 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