diff options
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyport.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index 3239020..5309de6 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -286,15 +286,12 @@ typedef size_t Py_uhash_t; /* fastest possible local call under MSVC */ #define Py_LOCAL(type) static type __fastcall #define Py_LOCAL_INLINE(type) static __inline type __fastcall -#define Py_LOCAL_CALLBACK(name) (__fastcall *name) #elif defined(USE_INLINE) #define Py_LOCAL(type) static type #define Py_LOCAL_INLINE(type) static inline type -#define Py_LOCAL_CALLBACK(name) (*name) #else #define Py_LOCAL(type) static type #define Py_LOCAL_INLINE(type) static type -#define Py_LOCAL_CALLBACK(name) (*name) #endif /* Py_MEMCPY can be used instead of memcpy in cases where the copied blocks |