Remove prototype for PyOS_strtol -- Chris Herborth.

This commit is contained in:
Guido van Rossum 1998-12-10 16:54:48 +00:00
parent cc34faaf14
commit f5046d1aea
1 changed files with 0 additions and 1 deletions

View File

@ -59,7 +59,6 @@ static PyObject *
int_from_string(v)
PyObject *v;
{
extern long PyOS_strtol Py_PROTO((const char *, char **, int));
char *s, *end;
long x;
char buffer[256]; /* For errors */