summaryrefslogtreecommitdiff
path: root/Include/pyport.h
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-06 10:46:49 -0700
committerBenjamin Peterson <benjamin@python.org>2016-09-06 10:46:49 -0700
commit914b59533a094e815809f62441d02b560e23057b (patch)
tree387c68b0cde030cf6ff0a63d42881de64bb56c9b /Include/pyport.h
parentd10c4e6a0bbcea8170f87cf1c0a3c823421e9178 (diff)
downloadcpython-914b59533a094e815809f62441d02b560e23057b.tar.gz
replace PY_LONG_LONG with long long
Diffstat (limited to 'Include/pyport.h')
-rw-r--r--Include/pyport.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index b9aa70bcf3..3d5233eb39 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."