summaryrefslogtreecommitdiff
path: root/Modules/addrinfo.h
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2003-03-29 10:06:18 +0000
committerMartin v. Löwis <martin@v.loewis.de>2003-03-29 10:06:18 +0000
commit5aa3301c0c28adfa8477ba753ce733589b9d743a (patch)
tree5f6450a2d541eea53ecbecd3eeb93edddc02400e /Modules/addrinfo.h
parent1a84b6066a8a1f2cecf0d39b2e0b5dbdd85c5a5c (diff)
downloadcpython-5aa3301c0c28adfa8477ba753ce733589b9d743a.tar.gz
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.
Diffstat (limited to 'Modules/addrinfo.h')
-rw-r--r--Modules/addrinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/addrinfo.h b/Modules/addrinfo.h
index 7f85d814a7..d781c0de57 100644
--- a/Modules/addrinfo.h
+++ b/Modules/addrinfo.h
@@ -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