Use #ifdef MS_WIN32 instead of _MSC_VER > 850.

This commit is contained in:
Guido van Rossum 1996-09-07 00:59:43 +00:00
parent b2fb36498d
commit 87755a24c2
1 changed files with 1 additions and 1 deletions

View File

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