From: Guido van Rossum Date: Thu, 10 Dec 1998 16:57:44 +0000 (+0000) Subject: Remove prototypes for PyOS_strto[u]l -- Chris Herborth. X-Git-Tag: v1.5.2b1~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=46e9705ecad324b24ba7d69c6926bce051ec71fa;p=thirdparty%2FPython%2Fcpython.git Remove prototypes for PyOS_strto[u]l -- Chris Herborth. --- diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c index 9e9fa044f220..41d1ce2c3100 100644 --- a/Modules/stropmodule.c +++ b/Modules/stropmodule.c @@ -725,9 +725,6 @@ strop_atoi(self, args) PyObject *self; /* Not used */ PyObject *args; { - extern long PyOS_strtol Py_PROTO((const char *, char **, int)); - extern unsigned long - PyOS_strtoul Py_PROTO((const char *, char **, int)); char *s, *end; int base = 10; long x; diff --git a/Python/compile.c b/Python/compile.c index 3903524ff052..4cdc26f521cc 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;