diff options
-rw-r--r-- | Modules/_hotshot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c index 6a78fd2e49..2ee4eb9382 100644 --- a/Modules/_hotshot.c +++ b/Modules/_hotshot.c @@ -26,7 +26,7 @@ typedef __int64 hs_time; #ifndef HAVE_GETTIMEOFDAY #error "This module requires gettimeofday() on non-Windows platforms!" #endif -#if (defined(PYOS_OS2) && defined(PYCC_GCC)) +#if (defined(PYOS_OS2) && defined(PYCC_GCC)) || defined(__QNX__) #include <sys/time.h> #else #include <sys/resource.h> @@ -918,7 +918,7 @@ calibrate(void) #endif } #if defined(MS_WINDOWS) || defined(PYOS_OS2) || \ - defined(__VMS) + defined(__VMS) || defined (__QNX__) rusage_diff = -1; #else { |