]> granicus.if.org Git - python/commitdiff
Remove prototype for PyOS_strtol -- Chris Herborth.
authorGuido van Rossum <guido@python.org>
Thu, 10 Dec 1998 16:54:48 +0000 (16:54 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 10 Dec 1998 16:54:48 +0000 (16:54 +0000)
Objects/abstract.c

index bfc08114cac1fa10180e93988dff77b56ad5b775..288c3cb2d93dc30c93943b214aa438cbb1a91c8c 100644 (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 */