summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-06-25 00:37:25 +0200
committerVictor Stinner <victor.stinner@gmail.com>2013-06-25 00:37:25 +0200
commitb963769c480e670e792ee3da641ded5452d83194 (patch)
tree1d88f1dc26cdd945c963e8565dbbf7fbda05aecd /Include
parentd125f1622dc51f4875b9fc8994d84d17983b7bb4 (diff)
downloadcpython-b963769c480e670e792ee3da641ded5452d83194.tar.gz
If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified.
Diffstat (limited to 'Include')
-rw-r--r--Include/pyport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index f16cce9c49..acb6d5da71 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -263,7 +263,7 @@ typedef size_t Py_uhash_t;
*/
#ifdef HAVE_LONG_LONG
# ifndef PY_FORMAT_LONG_LONG
-# if defined(MS_WIN64) || defined(MS_WINDOWS)
+# ifdef MS_WINDOWS
# define PY_FORMAT_LONG_LONG "I64"
# else
# error "This platform's pyconfig.h needs to define PY_FORMAT_LONG_LONG"