From 102e457a01bb10d3724c20464b919704ea30744d Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Tue, 14 Nov 2000 20:44:53 +0000 Subject: SF bug 119622: compile errors due to redundant atof decls. I don't understand the bug report (for details, look at it), but agree there's no need for Python to declare atof itself: we #include stdlib.h, and ANSI C sez atof is declared there already. --- Python/compile.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/compile.c') diff --git a/Python/compile.c b/Python/compile.c index e14fc01df8..77ae001c11 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -767,7 +767,6 @@ com_addopname(struct compiling *c, int op, node *n) static PyObject * parsenumber(struct compiling *co, char *s) { - extern double atof(const char *); char *end; long x; double dx; -- cgit v1.2.1