]> granicus.if.org Git - python/commitdiff
Use #ifdef MS_WIN32 instead of _MSC_VER > 850.
authorGuido van Rossum <guido@python.org>
Sat, 7 Sep 1996 00:59:43 +0000 (00:59 +0000)
committerGuido van Rossum <guido@python.org>
Sat, 7 Sep 1996 00:59:43 +0000 (00:59 +0000)
Modules/posixmodule.c

index 8e56661c1d96c7adf176ca46677411f29b1d8e62..eb34bdd7de064a691d51a842e00969a86c7bd300 100644 (file)
@@ -1241,7 +1241,7 @@ posix_times(self, args)
                       (double)c / HZ);
 }
 #endif /* HAVE_TIMES */
-#if defined(_MSC_VER) && _MSC_VER > 850
+#ifdef MS_WIN32
 #define HAVE_TIMES     /* so the method table will pick it up */
 static object *
 posix_times(self, args)