diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-08-31 13:48:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-08-31 13:48:55 (GMT) |
commit | 5791a5403b130323db98b8d8dd36e31adb37a1e9 (patch) | |
tree | b29851a633b6b4ff463bf1cc5f77e73ce38b6f7e /Include | |
parent | cfd4661e78bd2256caaf80cf29588e5119e787b0 (diff) | |
download | cpython-5791a5403b130323db98b8d8dd36e31adb37a1e9.zip cpython-5791a5403b130323db98b8d8dd36e31adb37a1e9.tar.gz cpython-5791a5403b130323db98b8d8dd36e31adb37a1e9.tar.bz2 |
pytime.h: remove duplicated "#ifndef Py_LIMITED_API"
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pytime.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/pytime.h b/Include/pytime.h index 14e9596..0f969b3 100644 --- a/Include/pytime.h +++ b/Include/pytime.h @@ -13,8 +13,6 @@ functions and constants extern "C" { #endif -#ifndef Py_LIMITED_API - #ifdef HAVE_GETTIMEOFDAY typedef struct timeval _PyTime_timeval; #else @@ -96,7 +94,6 @@ PyAPI_FUNC(int) _PyTime_ObjectToTimespec( /* Initialize time. Return 0 on success, raise an exception and return -1 on error. */ PyAPI_FUNC(int) _PyTime_Init(void); -#endif /* Py_LIMITED_API */ #ifdef __cplusplus } |