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/import.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Python/import.c') diff --git a/Python/import.c b/Python/import.c index 936cbda06d..851fd06930 100644 --- a/Python/import.c +++ b/Python/import.c @@ -55,8 +55,12 @@ PERFORMANCE OF THIS SOFTWARE. #ifndef DONT_HAVE_STAT #define HAVE_STAT +#ifndef DONT_HAVE_SYS_TYPES_H #include +#endif +#ifndef DONT_HAVE_SYS_STAT_H #include +#endif #if defined(PYCC_VACPP) /* VisualAge C/C++ Failed to Define MountType Field in sys/stat.h */ -- cgit v1.2.1