diff options
author | Guido van Rossum <guido@python.org> | 1998-12-10 16:57:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-12-10 16:57:44 (GMT) |
commit | 46e9705ecad324b24ba7d69c6926bce051ec71fa (patch) | |
tree | f9b780d1a8ea8143835dd604567f0c97df00ae0a /Python | |
parent | ca90605678cb724b9fc521e42abd644162d686c3 (diff) | |
download | cpython-46e9705ecad324b24ba7d69c6926bce051ec71fa.zip cpython-46e9705ecad324b24ba7d69c6926bce051ec71fa.tar.gz cpython-46e9705ecad324b24ba7d69c6926bce051ec71fa.tar.bz2 |
Remove prototypes for PyOS_strto[u]l -- Chris Herborth.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/compile.c b/Python/compile.c index 3903524..4cdc26f 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -816,9 +816,6 @@ parsenumber(co, s) struct compiling *co; char *s; { - extern long PyOS_strtol Py_PROTO((const char *, char **, int)); - extern unsigned long PyOS_strtoul Py_PROTO((const char *, - char **, int)); extern double atof Py_PROTO((const char *)); char *end; long x; |