Jeff Rush: add definition for S_IFMT for VisualAge C/C++ under OS2.
diff --git a/Python/import.c b/Python/import.c
index aef7353..4cd8ed7 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -58,6 +58,11 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 
+#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