diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-20 01:44:59 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-20 01:44:59 +0000 |
commit | eddc1449bae39414aaf7a4f63ccd3b69c4fb069e (patch) | |
tree | caaeed5da8c9755c4cc1d8ebf8da2f0608262c56 /Python/strerror.c | |
parent | 4bae2d5e46b5135dba523616fd0960fc915eb120 (diff) | |
download | cpython-git-eddc1449bae39414aaf7a4f63ccd3b69c4fb069e.tar.gz |
Getting rid of all the code inside #ifdef macintosh too.
Diffstat (limited to 'Python/strerror.c')
-rw-r--r-- | Python/strerror.c | 5 |
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 |