We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca90605 commit 46e9705Copy full SHA for 46e9705
2 files changed
Modules/stropmodule.c
@@ -725,9 +725,6 @@ strop_atoi(self, args)
725
PyObject *self; /* Not used */
726
PyObject *args;
727
{
728
- extern long PyOS_strtol Py_PROTO((const char *, char **, int));
729
- extern unsigned long
730
- PyOS_strtoul Py_PROTO((const char *, char **, int));
731
char *s, *end;
732
int base = 10;
733
long x;
Python/compile.c
@@ -816,9 +816,6 @@ parsenumber(co, s)
816
struct compiling *co;
817
char *s;
818
819
820
- extern unsigned long PyOS_strtoul Py_PROTO((const char *,
821
- char **, int));
822
extern double atof Py_PROTO((const char *));
823
char *end;
824
0 commit comments