diff options
author | Guido van Rossum <guido@python.org> | 1999-08-27 20:39:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-08-27 20:39:37 (GMT) |
commit | ff7e83d6067814a329790cc983f1efa67371ccf8 (patch) | |
tree | 2c5dbda38f6ef25f9d6f1fc07acf9b9603feb4b8 /Modules | |
parent | 7f1de832a21df9048041405b6ca624c91fd98e58 (diff) | |
download | cpython-ff7e83d6067814a329790cc983f1efa67371ccf8.zip cpython-ff7e83d6067814a329790cc983f1efa67371ccf8.tar.gz cpython-ff7e83d6067814a329790cc983f1efa67371ccf8.tar.bz2 |
Patch by Mark Hammond to avoid certain header files on Windows/CE.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/getbuildinfo.c | 2 | ||||
-rw-r--r-- | Modules/selectmodule.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Modules/getbuildinfo.c b/Modules/getbuildinfo.c index 49793b8..35da3f7 100644 --- a/Modules/getbuildinfo.c +++ b/Modules/getbuildinfo.c @@ -4,7 +4,9 @@ #include "macbuildno.h" #endif +#ifndef DONT_HAVE_STDIO_H #include <stdio.h> +#endif #ifndef DATE #ifdef __DATE__ diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index 11f72f5..c18d979 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -48,7 +48,9 @@ PERFORMANCE OF THIS SOFTWARE. extern void bzero(); #endif +#ifndef DONT_HAVE_SYS_TYPES_H #include <sys/types.h> +#endif #if defined(PYOS_OS2) #include <sys/time.h> |