mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
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:
parent
99fb7c70f4
commit
2571cc8bf5
5 changed files with 18 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue