From: Victor Stinner Date: Sun, 31 Aug 2014 13:48:55 +0000 (+0200) Subject: pytime.h: remove duplicated "#ifndef Py_LIMITED_API" X-Git-Tag: v3.5.0a1~977 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5791a5403b130323db98b8d8dd36e31adb37a1e9;p=python pytime.h: remove duplicated "#ifndef Py_LIMITED_API" --- diff --git a/Include/pytime.h b/Include/pytime.h index 14e95960e6..0f969b3c05 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 }