diff --git a/Python/import.c b/Python/import.c index aef73537c55..4cd8ed74d70 100644 --- a/Python/import.c +++ b/Python/import.c @@ -58,6 +58,11 @@ PERFORMANCE OF THIS SOFTWARE. #include #include +#if defined(PYCC_VACPP) +/* VisualAge C/C++ Failed to Define MountType Field in sys/stat.h */ +#define S_IFMT (S_IFDIR|S_IFCHR|S_IFREG) +#endif + #ifndef S_ISDIR #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR) #endif