summaryrefslogtreecommitdiff
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-11-14 20:44:53 +0000
committerTim Peters <tim.peters@gmail.com>2000-11-14 20:44:53 +0000
commitc4c1cbdfb1d076ad4675bd2852846294d7ee1201 (patch)
tree287b451371929e95ba2e6cb7a4006abb94ad138a /Python/marshal.c
parent48623af2fa3894c2d38037272ff04de4dae61fa0 (diff)
downloadcpython-c4c1cbdfb1d076ad4675bd2852846294d7ee1201.tar.gz
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.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index f8953ceae4..a9b3ed1653 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -403,7 +403,6 @@ r_object(RFILE *p)
case TYPE_FLOAT:
{
- extern double atof(const char *);
char buf[256];
double dx;
n = r_byte(p);
@@ -422,7 +421,6 @@ r_object(RFILE *p)
#ifndef WITHOUT_COMPLEX
case TYPE_COMPLEX:
{
- extern double atof(const char *);
char buf[256];
Py_complex c;
n = r_byte(p);