From 2571cc8bf50a9e08bc45116ee7f39de78139a6ca Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 7 Apr 1999 16:07:23 +0000 Subject: Changes by Mark Hammond for Windows CE. Mostly of the form #ifdef DONT_HAVE_header_H ... #endif around #include . --- Python/thread.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Python/thread.c') diff --git a/Python/thread.c b/Python/thread.c index c533398a3c..0f46223499 100644 --- a/Python/thread.c +++ b/Python/thread.c @@ -42,13 +42,17 @@ PERFORMANCE OF THIS SOFTWARE. #define DL_IMPORT(RTYPE) RTYPE #endif +#ifndef DONT_HAVE_STDIO_H #include +#endif #ifdef HAVE_STDLIB_H #include #else +#ifdef Py_DEBUG extern char *getenv(); #endif +#endif #ifdef HAVE_UNISTD_H #include @@ -162,6 +166,10 @@ void PyThread_init_thread _P0() #include "thread_beos.h" #endif +#ifdef WINCE_THREADS +#include "thread_wince.h" +#endif + /* #ifdef FOOBAR_THREADS #include "thread_foobar.h" -- cgit v1.2.1