diff options
author | Skip Montanaro <skip@pobox.com> | 2004-02-10 16:50:21 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2004-02-10 16:50:21 +0000 |
commit | f50a3457a0f4ed8e317aeccab7c00fd847b598e7 (patch) | |
tree | 7d831a386ac52c5245ab9852882f3598b5fad06a /Python/thread.c | |
parent | 76f5dc69517cbf13fec6dcb2899257348b758b6d (diff) | |
download | cpython-f50a3457a0f4ed8e317aeccab7c00fd847b598e7.tar.gz |
remove support for missing ANSI C header files (limits.h, stddef.h, etc).
Diffstat (limited to 'Python/thread.c')
-rw-r--r-- | Python/thread.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/thread.c b/Python/thread.c index 016ccbab66..8bc958f9cd 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -11,13 +11,7 @@ #include <stdio.h> #endif -#ifdef HAVE_STDLIB_H #include <stdlib.h> -#else -#ifdef Py_DEBUG -extern char *getenv(const char *); -#endif -#endif #ifdef __sgi #ifndef HAVE_PTHREAD_H /* XXX Need to check in configure.in */ |