diff options
author | Guido van Rossum <guido@python.org> | 1997-05-07 23:51:07 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-05-07 23:51:07 (GMT) |
commit | ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e (patch) | |
tree | 8b42b22b53805dae2031613294ae26470b64c149 /Python/mystrtoul.c | |
parent | 6778f257b7d06d2fc88563a9141b2f1b92d4ebb7 (diff) | |
download | cpython-ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e.zip cpython-ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e.tar.gz cpython-ee2373b930fb6d994e2f0ea2cfbb5753da4fba4e.tar.bz2 |
Oops, missed some renamings.
Diffstat (limited to 'Python/mystrtoul.c')
-rw-r--r-- | Python/mystrtoul.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Python/mystrtoul.c b/Python/mystrtoul.c index ed0e526..6f8e9bd 100644 --- a/Python/mystrtoul.c +++ b/Python/mystrtoul.c @@ -39,8 +39,6 @@ PERFORMANCE OF THIS SOFTWARE. #define Py_CHARMASK(c) ((c) & 0xff) #endif -#include "rename2.h" - /* strtol and strtoul, renamed to avoid conflicts */ /* @@ -61,7 +59,7 @@ PERFORMANCE OF THIS SOFTWARE. #include <errno.h> unsigned long -mystrtoul(str, ptr, base) +PyOS_strtoul(str, ptr, base) register char * str; char ** ptr; int base; @@ -148,7 +146,7 @@ int base; } long -mystrtol(str, ptr, base) +PyOS_strtol(str, ptr, base) char * str; char ** ptr; int base; @@ -163,7 +161,7 @@ int base; if (sign == '+' || sign == '-') str++; - result = (long) mystrtoul(str, ptr, base); + result = (long) PyOS_strtoul(str, ptr, base); /* Signal overflow if the result appears negative, except for the largest negative integer */ |