diff options
author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2019-10-21 11:49:48 +0500 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-21 09:49:48 +0300 |
commit | a9ed91e6c2f0f1a9960b1382321918448228a801 (patch) | |
tree | 88fb78383fa04a76a6bea628301512f13379babb /PC | |
parent | 919f0bc8c904d3aa13eedb2dd1fe9c6b0555a591 (diff) | |
download | cpython-git-a9ed91e6c2f0f1a9960b1382321918448228a801.tar.gz |
bpo-27961: Replace PY_LONG_LONG with long long. (GH-15386)
Diffstat (limited to 'PC')
-rw-r--r-- | PC/pyconfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/pyconfig.h b/PC/pyconfig.h index d407e1d463..6a437ce24b 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -296,7 +296,7 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ # define SIZEOF_HKEY 8 # define SIZEOF_SIZE_T 8 /* configure.ac defines HAVE_LARGEFILE_SUPPORT iff - sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t). + sizeof(off_t) > sizeof(long), and sizeof(long long) >= sizeof(off_t). On Win64 the second condition is not true, but if fpos_t replaces off_t then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64 should define this. */ |