diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyport.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index 61ca3a9..953f75c 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -216,17 +216,10 @@ typedef Py_ssize_t Py_ssize_clean_t; * WRAPPER FOR <time.h> and/or <sys/time.h> * ********************************************/ -#ifdef TIME_WITH_SYS_TIME -#include <sys/time.h> -#include <time.h> -#else /* !TIME_WITH_SYS_TIME */ #ifdef HAVE_SYS_TIME_H #include <sys/time.h> -#else /* !HAVE_SYS_TIME_H */ +#endif #include <time.h> -#endif /* !HAVE_SYS_TIME_H */ -#endif /* !TIME_WITH_SYS_TIME */ - /****************************** * WRAPPER FOR <sys/select.h> * |