mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
replace Py_(u)intptr_t with the c99 standard types
This commit is contained in:
parent
3c397e4c39
commit
ca47063998
21 changed files with 86 additions and 86 deletions
|
|
@ -61,7 +61,7 @@ typedef enum _Py_memory_order {
|
|||
} _Py_memory_order;
|
||||
|
||||
typedef struct _Py_atomic_address {
|
||||
Py_uintptr_t _value;
|
||||
uintptr_t _value;
|
||||
} _Py_atomic_address;
|
||||
|
||||
typedef struct _Py_atomic_int {
|
||||
|
|
@ -98,7 +98,7 @@ typedef enum _Py_memory_order {
|
|||
} _Py_memory_order;
|
||||
|
||||
typedef struct _Py_atomic_address {
|
||||
Py_uintptr_t _value;
|
||||
uintptr_t _value;
|
||||
} _Py_atomic_address;
|
||||
|
||||
typedef struct _Py_atomic_int {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue