mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.
This commit is contained in:
parent
043bbc7da3
commit
b9a0f91218
15 changed files with 87 additions and 85 deletions
|
@ -142,7 +142,7 @@ struct addrinfo {
|
|||
*/
|
||||
#define _SS_MAXSIZE 128
|
||||
#ifdef HAVE_LONG_LONG
|
||||
#define _SS_ALIGNSIZE (sizeof(LONG_LONG))
|
||||
#define _SS_ALIGNSIZE (sizeof(PY_LONG_LONG))
|
||||
#else
|
||||
#define _SS_ALIGNSIZE (sizeof(double))
|
||||
#endif
|
||||
|
@ -159,7 +159,7 @@ struct sockaddr_storage {
|
|||
#endif
|
||||
char __ss_pad1[_SS_PAD1SIZE];
|
||||
#ifdef HAVE_LONG_LONG
|
||||
LONG_LONG __ss_align; /* force desired structure storage alignment */
|
||||
PY_LONG_LONG __ss_align; /* force desired structure storage alignment */
|
||||
#else
|
||||
double __ss_align; /* force desired structure storage alignment */
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue