diff options
author | Guido van Rossum <guido@python.org> | 1997-08-12 14:51:52 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-12 14:51:52 +0000 |
commit | d18768379241bdc24bd0c77cf5e3c60bb603a826 (patch) | |
tree | 1677d3a8989f0bed93f3e42cd9e109268fa8ec69 /Python/errors.c | |
parent | 497693326612f1eda259989bf9ff31a007070386 (diff) | |
download | cpython-d18768379241bdc24bd0c77cf5e3c60bb603a826.tar.gz |
Use strerror on the mac if using MSL (Jack).
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/errors.c b/Python/errors.c index 4795aafb78..6109387cfb 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -38,15 +38,9 @@ PERFORMANCE OF THIS SOFTWARE. #endif #ifdef macintosh -#ifndef __MSL__ -/* Replace strerror with a Mac specific routine. - XXX PROBLEM: some positive errors have a meaning for MacOS, - but some library routines set Unix error numbers... -*/ extern char *PyMac_StrError Py_PROTO((int)); #undef strerror #define strerror PyMac_StrError -#endif #endif /* macintosh */ #ifndef __STDC__ |