Commit 87755a24 authored by Guido van Rossum's avatar Guido van Rossum

Use #ifdef MS_WIN32 instead of _MSC_VER > 850.

parent b2fb3649
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment