From 5ef86d55b5b6f2ddb60e6df021684abda6c2cb16 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Thu, 19 Jan 1995 12:16:44 +0000 Subject: [PATCH] Undef strerror on the mac before redefining it --- Python/errors.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/errors.c b/Python/errors.c index 61cb448e71b..675784230a3 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -67,6 +67,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ** call it strerror(), though, since that is already defined (for Think C) ** in ANSI */ +#undef strerror #define strerror macstrerror #include "macdefs.h" /* For CW to find EINTR */ #endif /* !macintosh */