diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:02:58 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-19 01:02:58 (GMT) |
commit | 41e35f37edf760898f9c440ac17a4c542c9d88a1 (patch) | |
tree | c85a8dcd0b1ee38f9c5bac963eda734354c52d84 /Include/pyport.h | |
parent | 9ac11a752a19c3b8607582a3d5ccb615c467124b (diff) | |
download | cpython-41e35f37edf760898f9c440ac17a4c542c9d88a1.zip cpython-41e35f37edf760898f9c440ac17a4c542c9d88a1.tar.gz cpython-41e35f37edf760898f9c440ac17a4c542c9d88a1.tar.bz2 |
always define HAVE_LONG_LONG (#27961)
Diffstat (limited to 'Include/pyport.h')
-rw-r--r-- | Include/pyport.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index be1d66d..421b954 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -37,6 +37,9 @@ Used in: Py_SAFE_DOWNCAST * integral synonyms. Only define the ones we actually need. */ +// long long is required now. Define HAVE_LONG_LONG unconditionally for +// compatibility. +#define HAVE_LONG_LONG #ifndef PY_LONG_LONG #define PY_LONG_LONG long long /* If LLONG_MAX is defined in limits.h, use that. */ |