summaryrefslogtreecommitdiff
path: root/Python/thread.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-01-12 11:05:12 +0000
committerMartin v. Löwis <martin@v.loewis.de>2002-01-12 11:05:12 +0000
commit1d05cd8d8ec0526e5fd16e541b4e92a7c64dfede (patch)
tree9af456c2a297a7a8a665455a6fdbefa817dc9a30 /Python/thread.c
parent6298dc843edf03eab2579779bdb000baa9cb3b55 (diff)
downloadcpython-1d05cd8d8ec0526e5fd16e541b4e92a7c64dfede.tar.gz
Include <unistd.h> in Python.h. Fixes #500924.
Diffstat (limited to 'Python/thread.c')
-rw-r--r--Python/thread.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/Python/thread.c b/Python/thread.c
index df42f316be..f9a4de9cb2 100644
--- a/Python/thread.c
+++ b/Python/thread.c
@@ -5,7 +5,7 @@
which is included by this file dependent on config settings.
Stuff shared by all thread_*.h files is collected here. */
-#include "pyconfig.h"
+#include "Python.h"
/* pyconfig.h may or may not define DL_IMPORT */
#ifndef DL_IMPORT /* declarations for DLL import/export */
@@ -24,10 +24,6 @@ extern char *getenv(const char *);
#endif
#endif
-#ifdef HAVE_UNISTD_H
-#include <unistd.h>
-#endif
-
#ifdef __DGUX
#define _USING_POSIX4A_DRAFT6
#endif