Patch #1734014: Use _I64_MAX instead of LLONG_MAX.

This commit is contained in:
Martin v. Löwis 2007-06-14 20:47:15 +00:00
parent 7d18356db7
commit d3d80f3cd1
1 changed files with 3 additions and 3 deletions

View File

@ -262,9 +262,9 @@ typedef int pid_t;
#define HAVE_LONG_LONG 1
#ifndef PY_LONG_LONG
# define PY_LONG_LONG __int64
# define PY_LLONG_MAX LLONG_MAX
# define PY_LLONG_MIN LLONG_MIN
# define PY_ULLONG_MAX ULLONG_MAX
# define PY_LLONG_MAX _I64_MAX
# define PY_LLONG_MIN _I64_MIN
# define PY_ULLONG_MAX _UI64_MAX
#endif
/* For Windows the Python core is in a DLL by default. Test