diff options
Diffstat (limited to 'Include/pyport.h')
-rw-r--r-- | Include/pyport.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index b9aa70b..3d5233e 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -156,8 +156,8 @@ typedef unsigned long Py_uintptr_t; typedef long Py_intptr_t; #elif SIZEOF_VOID_P <= SIZEOF_LONG_LONG -typedef unsigned PY_LONG_LONG Py_uintptr_t; -typedef PY_LONG_LONG Py_intptr_t; +typedef unsigned long long Py_uintptr_t; +typedef long long Py_intptr_t; #else # error "Python needs a typedef for Py_uintptr_t in pyport.h." |