summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1997-09-30 19:20:01 (GMT)
committerFred Drake <fdrake@acm.org>1997-09-30 19:20:01 (GMT)
commitfd9ef4a26d234ce16b986a28d49d0c96aceab9c0 (patch)
tree76f1b852245609f96faf440d7e6302ff8fc5cc27 /Modules
parent228776cfa8d3b62cb23c4ac8e24a6f58a529175e (diff)
downloadcpython-fd9ef4a26d234ce16b986a28d49d0c96aceab9c0.zip
cpython-fd9ef4a26d234ce16b986a28d49d0c96aceab9c0.tar.gz
cpython-fd9ef4a26d234ce16b986a28d49d0c96aceab9c0.tar.bz2
Removed extern declaration of strdup(). Doesn't appear to be important and
causes ugly noises under Windows.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/parsermodule.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c
index 50c1def..d1f1154 100644
--- a/Modules/parsermodule.c
+++ b/Modules/parsermodule.c
@@ -26,16 +26,6 @@
/* ISTERMINAL() / ISNONTERMINAL() */
#include "compile.h" /* PyNode_Compile() */
-/*
- * All the "fudge" declarations are here:
- *
- * This isn't part of the Python runtime, but it's in the library somewhere.
- * Where it is varies a bit, so just declare it. Don't use any prototype;
- * different systems declare it a little differently, and we don't need the
- * extra warnings.
- */
-extern char* strdup();
-
/* String constants used to initialize module attributes.
*