diff options
author | Guido van Rossum <guido@python.org> | 1999-01-27 17:53:11 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-01-27 17:53:11 +0000 |
commit | 2ef8d8a6debc71cd8faa1ece5143bfee2c8b4a1d (patch) | |
tree | ec5f18231d02e79088b351af795245773ad463c1 /Python/strdup.c | |
parent | 75c74c5942e3112a10de0cd687dd27192455f110 (diff) | |
download | cpython-2ef8d8a6debc71cd8faa1ece5143bfee2c8b4a1d.tar.gz |
Patches by William Lewis for Nextstep descendants.
Diffstat (limited to 'Python/strdup.c')
-rw-r--r-- | Python/strdup.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/strdup.c b/Python/strdup.c index d21a0bc9ec..9168b4fe5d 100644 --- a/Python/strdup.c +++ b/Python/strdup.c @@ -1,10 +1,6 @@ /* strdup() replacement (from stdwin, if you must know) */ -#include "config.h" -#include "myproto.h" -#include "mymalloc.h" - -#include <string.h> +#include "pgenheaders.h" char * strdup(str) |