From: Guido van Rossum Date: Thu, 10 Dec 1998 16:54:48 +0000 (+0000) Subject: Remove prototype for PyOS_strtol -- Chris Herborth. X-Git-Tag: v1.5.2b1~89 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5046d1aeae66715717cda25b98ae86f2fcda590;p=thirdparty%2FPython%2Fcpython.git Remove prototype for PyOS_strtol -- Chris Herborth. --- diff --git a/Objects/abstract.c b/Objects/abstract.c index bfc08114cac1..288c3cb2d93d 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -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 */