diff options
-rw-r--r-- | Modules/timemodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index f631b05a64..ee3fb8db98 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -83,8 +83,12 @@ time_time(self, args) #ifdef HAVE_CLOCK #ifndef CLOCKS_PER_SEC +#ifdef CLK_TCK +#define CLOCKS_PER_SEC CLK_TCK +#else #define CLOCKS_PER_SEC 1000000 #endif +#endif static object * time_clock(self, args) |