Remove prototypes for PyOS_strto[u]l -- Chris Herborth.

This commit is contained in:
Guido van Rossum 1998-12-10 16:57:44 +00:00
parent ca90605678
commit 46e9705eca
2 changed files with 0 additions and 6 deletions

View file

@ -725,9 +725,6 @@ strop_atoi(self, args)
PyObject *self; /* Not used */ PyObject *self; /* Not used */
PyObject *args; 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; char *s, *end;
int base = 10; int base = 10;
long x; long x;

View file

@ -816,9 +816,6 @@ parsenumber(co, s)
struct compiling *co; struct compiling *co;
char *s; 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 *)); extern double atof Py_PROTO((const char *));
char *end; char *end;
long x; long x;