summaryrefslogtreecommitdiffstats
path: root/Include/longobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-01-06 18:39:42 (GMT)
committerGuido van Rossum <guido@python.org>1999-01-06 18:39:42 (GMT)
commit2e6e7d4b7a6e28f20b7b3363d40c2066baceb492 (patch)
treed1359a2e75dbef92a817f852fc2130e78c085474 /Include/longobject.h
parent522af3a126b2dcd0fa7c04d1fabfe7b231a452bb (diff)
downloadcpython-2e6e7d4b7a6e28f20b7b3363d40c2066baceb492.zip
cpython-2e6e7d4b7a6e28f20b7b3363d40c2066baceb492.tar.gz
cpython-2e6e7d4b7a6e28f20b7b3363d40c2066baceb492.tar.bz2
Changes for long file support by Steve Clift.
Diffstat (limited to 'Include/longobject.h')
-rw-r--r--Include/longobject.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index 46105ae..89f2aa3 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -53,9 +53,28 @@ extern DL_IMPORT(PyObject *) PyLong_FromVoidPtr Py_PROTO((void *));
extern DL_IMPORT(void *) PyLong_AsVoidPtr Py_PROTO((PyObject *));
#ifdef HAVE_LONG_LONG
+
+#ifdef HAVE_LIMITS_H
+#include <limits.h>
+#endif
+
+/* Hopefully this is portable... */
+#ifndef LONG_MAX
+#define LONG_MAX 2147483647L
+#endif
+#ifndef ULONG_MAX
+#define ULONG_MAX 4294967295U
+#endif
+#ifndef LONGLONG_MAX
+#define LONGLONG_MAX 9223372036854775807LL
+#endif
+#ifndef ULONGLONG_MAX
+#define ULONGLONG_MAX 0xffffffffffffffffULL
+#endif
#ifndef LONG_LONG
#define LONG_LONG long long
#endif
+
extern DL_IMPORT(PyObject *) PyLong_FromLongLong Py_PROTO((LONG_LONG));
extern DL_IMPORT(PyObject *) PyLong_FromUnsignedLongLong Py_PROTO((unsigned LONG_LONG));
extern DL_IMPORT(LONG_LONG) PyLong_AsLongLong Py_PROTO((PyObject *));