summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-12 14:51:52 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-12 14:51:52 (GMT)
commite5b40268817b517b2759ffb71d79e8979ad9bae2 (patch)
treeeed3c2b09624fcda8c5f8516cf228c973846ce48
parent15974ad5e6157b65113b4427e90d750e41d050bd (diff)
downloadcpython-e5b40268817b517b2759ffb71d79e8979ad9bae2.zip
cpython-e5b40268817b517b2759ffb71d79e8979ad9bae2.tar.gz
cpython-e5b40268817b517b2759ffb71d79e8979ad9bae2.tar.bz2
Use strerror on the mac if using MSL (Jack).
-rw-r--r--Python/errors.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/errors.c b/Python/errors.c
index 4795aaf..6109387 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__