From 927f6e68fba6c55d2c5bf861c74c1eb2380bfcf8 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 29 Aug 1996 18:10:30 +0000 Subject: Needed more includes... --- Python/strdup.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'Python/strdup.c') diff --git a/Python/strdup.c b/Python/strdup.c index 5198e25e08..d21a0bc9ec 100644 --- a/Python/strdup.c +++ b/Python/strdup.c @@ -1,13 +1,10 @@ /* strdup() replacement (from stdwin, if you must know) */ #include "config.h" -#include +#include "myproto.h" +#include "mymalloc.h" -#ifdef HAVE_STDLIB_H -#include -#else -extern ANY *malloc Py_PROTO((size_t)); -#endif +#include char * strdup(str) -- cgit v1.2.1