Changes by Mark Hammond for Windows CE. Mostly of the form

#ifdef DONT_HAVE_header_H ... #endif around #include <header.h>.
This commit is contained in:
Guido van Rossum 1999-04-07 16:07:23 +00:00
parent 99fb7c70f4
commit 2571cc8bf5
5 changed files with 18 additions and 0 deletions

View file

@ -42,13 +42,17 @@ PERFORMANCE OF THIS SOFTWARE.
#define DL_IMPORT(RTYPE) RTYPE
#endif
#ifndef DONT_HAVE_STDIO_H
#include <stdio.h>
#endif
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#else
#ifdef Py_DEBUG
extern char *getenv();
#endif
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
@ -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"