Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d4aea71

Browse files
committed
Merged revisions 75905 via svnmerge from
svn+ssh://[email protected]/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 ........
1 parent 7a8ad4a commit d4aea71

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_io/_iomodule.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ typedef PY_LONG_LONG Py_off_t;
8787
# define PY_OFF_T_MAX PY_LLONG_MAX
8888
# define PY_OFF_T_MIN PY_LLONG_MIN
8989
# define PY_PRIdOFF "lld" /* format to use in printf with type off_t */
90-
# define PY_OFF_T_COMPAT long long /* standard type compatible with off_t */
90+
# define PY_OFF_T_COMPAT PY_LONG_LONG /* type compatible with off_t */
9191
#else
9292

9393
/* Other platforms use off_t */
@@ -98,7 +98,7 @@ typedef off_t Py_off_t;
9898
# define PY_OFF_T_MAX PY_LLONG_MAX
9999
# define PY_OFF_T_MIN PY_LLONG_MIN
100100
# define PY_PRIdOFF "lld"
101-
# define PY_OFF_T_COMPAT long long
101+
# define PY_OFF_T_COMPAT PY_LONG_LONG
102102
#elif (SIZEOF_OFF_T == SIZEOF_LONG)
103103
# define PyLong_AsOff_t PyLong_AsLong
104104
# define PyLong_FromOff_t PyLong_FromLong

0 commit comments

Comments
 (0)