*** /home/trentm/main/contrib/python/dist/src/Modules/timemodule.c Thu Jun 1 00:13:39 2000 --- /home/trentm/main/Apps/Perlium/Python/dist/src/Modules/timemodule.c Wed May 31 23:54:18 2000 *************** *** 89,99 **** #endif /* MS_WINDOWS */ #endif /* !__WATCOMC__ || __QNX__ */ ! #ifdef MS_WIN32 ! /* Win32 has better clock replacement */ #include #undef HAVE_CLOCK /* We have our own version down below */ ! #endif /* MS_WIN32 */ #if defined(PYCC_VACPP) #include --- 89,100 ---- #endif /* MS_WINDOWS */ #endif /* !__WATCOMC__ || __QNX__ */ ! #if defined(MS_WIN32) && !defined(MS_WIN64) ! /* Win32 has better clock replacement ! XXX Win64 does not yet, but might when the platform matures. */ #include #undef HAVE_CLOCK /* We have our own version down below */ ! #endif /* MS_WIN32 && !MS_WIN64 */ #if defined(PYCC_VACPP) #include *************** *** 190,196 **** } #endif /* HAVE_CLOCK */ ! #ifdef MS_WIN32 /* Due to Mark Hammond */ static PyObject * time_clock(self, args) --- 191,197 ---- } #endif /* HAVE_CLOCK */ ! #if defined(MS_WIN32) && !defined(MS_WIN64) /* Due to Mark Hammond */ static PyObject * time_clock(self, args) *************** *** 226,232 **** } #define HAVE_CLOCK /* So it gets included in the methods */ ! #endif /* MS_WIN32 */ #ifdef HAVE_CLOCK static char clock_doc[] = --- 227,233 ---- } #define HAVE_CLOCK /* So it gets included in the methods */ ! #endif /* MS_WIN32 && !MS_WIN64 */ #ifdef HAVE_CLOCK static char clock_doc[] =