diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-19 15:24:47 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-11-19 15:24:47 (GMT) |
commit | fb2765666f23434061e5def1aa8392797edf1f43 (patch) | |
tree | de935c5b77d6b50ad326dd41c94294ebd00e9cfa /Python/mystrtoul.c | |
parent | 61963220666a79d5c1811991a31261a5d993bcdb (diff) | |
download | cpython-fb2765666f23434061e5def1aa8392797edf1f43.zip cpython-fb2765666f23434061e5def1aa8392797edf1f43.tar.gz cpython-fb2765666f23434061e5def1aa8392797edf1f43.tar.bz2 |
Getting rid of support for the ancient Apple MPW compiler.
Diffstat (limited to 'Python/mystrtoul.c')
-rw-r--r-- | Python/mystrtoul.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/mystrtoul.c b/Python/mystrtoul.c index db98d2b..8e60c0c 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++; } |