]> granicus.if.org Git - python/commitdiff
Remove prototypes for PyOS_strto[u]l -- Chris Herborth.
authorGuido van Rossum <guido@python.org>
Thu, 10 Dec 1998 16:57:44 +0000 (16:57 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 10 Dec 1998 16:57:44 +0000 (16:57 +0000)
Modules/stropmodule.c
Python/compile.c

index 9e9fa044f2200ff809362a0dfe7e604b29f78e6f..41d1ce2c31008b3b56815884dc7b2eb893ae9f46 100644 (file)
@@ -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;
index 3903524ff0524d041f63fff66b667606a50fcad0..4cdc26f521cc6f708d6637485e3c3958e71db8b8 100644 (file)
@@ -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;