mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
replace PY_LONG_LONG with long long
This commit is contained in:
parent
45c7514de4
commit
af580dff4a
29 changed files with 222 additions and 234 deletions
|
@ -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."
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue