From fb2765666f23434061e5def1aa8392797edf1f43 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Wed, 19 Nov 2003 15:24:47 +0000 Subject: Getting rid of support for the ancient Apple MPW compiler. --- Python/mystrtoul.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'Python/mystrtoul.c') diff --git a/Python/mystrtoul.c b/Python/mystrtoul.c index db98d2b31a..8e60c0c072 100644 --- a/Python/mystrtoul.c +++ b/Python/mystrtoul.c @@ -100,7 +100,6 @@ PyOS_strtoul(register char *str, char **ptr, int base) } temp = result; result = result * base + c; -#ifndef MPW if(base == 10) { if(((long)(result - c) / base != (long)temp)) /* overflow */ ovf = 1; @@ -109,7 +108,6 @@ PyOS_strtoul(register char *str, char **ptr, int base) if ((result - c) / base != temp) /* overflow */ ovf = 1; } -#endif str++; } -- cgit v1.2.1