diff options
author | Jesus Cea <jcea@jcea.es> | 2012-10-05 00:11:36 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-10-05 00:11:36 (GMT) |
commit | 14c81aba509904959a86f14ccd180f714e6b753d (patch) | |
tree | 62c6d922cd4ae226c2e076b5d3ab81c7c5d24cb5 /Modules/_lsprof.c | |
parent | ab70e2ab3264c444ac70a1c98e869b0de0b22c4a (diff) | |
download | cpython-14c81aba509904959a86f14ccd180f714e6b753d.zip cpython-14c81aba509904959a86f14ccd180f714e6b753d.tar.gz cpython-14c81aba509904959a86f14ccd180f714e6b753d.tar.bz2 |
#16135: Removal of OS/2 support (Modules/*)
Diffstat (limited to 'Modules/_lsprof.c')
-rw-r--r-- | Modules/_lsprof.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/_lsprof.c b/Modules/_lsprof.c index b0a226b..5657f2f 100644 --- a/Modules/_lsprof.c +++ b/Modules/_lsprof.c @@ -36,12 +36,8 @@ hpTimerUnit(void) #error "This module requires gettimeofday() on non-Windows platforms!" #endif -#if (defined(PYOS_OS2) && defined(PYCC_GCC)) -#include <sys/time.h> -#else #include <sys/resource.h> #include <sys/times.h> -#endif static PY_LONG_LONG hpTimer(void) |