summaryrefslogtreecommitdiffstats
path: root/Modules/_io/_iomodule.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-10-28 07:25:03 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-10-28 07:25:03 (GMT)
commitd4aea7116a439f9c75fb0d85c1b859789fd649ee (patch)
tree446ba31e9cc239f0f89e952799766b4c27dd3526 /Modules/_io/_iomodule.h
parent7a8ad4a98167757ed066379db7c7d731e61dc799 (diff)
downloadcpython-d4aea7116a439f9c75fb0d85c1b859789fd649ee.zip
cpython-d4aea7116a439f9c75fb0d85c1b859789fd649ee.tar.gz
cpython-d4aea7116a439f9c75fb0d85c1b859789fd649ee.tar.bz2
Merged revisions 75905 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r75905 | mark.dickinson | 2009-10-28 07:23:49 +0000 (Wed, 28 Oct 2009) | 1 line Replace long long with PY_LONG_LONG ........
Diffstat (limited to 'Modules/_io/_iomodule.h')
-rw-r--r--Modules/_io/_iomodule.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_io/_iomodule.h b/Modules/_io/_iomodule.h
index b621c51..0858951 100644
--- a/Modules/_io/_iomodule.h
+++ b/Modules/_io/_iomodule.h
@@ -87,7 +87,7 @@ typedef PY_LONG_LONG Py_off_t;
# define PY_OFF_T_MAX PY_LLONG_MAX
# define PY_OFF_T_MIN PY_LLONG_MIN
# define PY_PRIdOFF "lld" /* format to use in printf with type off_t */
-# define PY_OFF_T_COMPAT long long /* standard type compatible with off_t */
+# define PY_OFF_T_COMPAT PY_LONG_LONG /* type compatible with off_t */
#else
/* Other platforms use off_t */
@@ -98,7 +98,7 @@ typedef off_t Py_off_t;
# define PY_OFF_T_MAX PY_LLONG_MAX
# define PY_OFF_T_MIN PY_LLONG_MIN
# define PY_PRIdOFF "lld"
-# define PY_OFF_T_COMPAT long long
+# define PY_OFF_T_COMPAT PY_LONG_LONG
#elif (SIZEOF_OFF_T == SIZEOF_LONG)
# define PyLong_AsOff_t PyLong_AsLong
# define PyLong_FromOff_t PyLong_FromLong