From: Fred Drake Date: Tue, 30 Sep 1997 19:20:01 +0000 (+0000) Subject: Removed extern declaration of strdup(). Doesn't appear to be important and X-Git-Tag: v1.5a4~111 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fd9ef4a26d234ce16b986a28d49d0c96aceab9c0;p=python Removed extern declaration of strdup(). Doesn't appear to be important and causes ugly noises under Windows. --- diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 50c1defc4f..d1f11548dc 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. *