summaryrefslogtreecommitdiffstats
path: root/Include/longobject.h
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2000-08-18 04:48:56 (GMT)
committerBarry Warsaw <barry@python.org>2000-08-18 04:48:56 (GMT)
commit5eae2c160f6e00a1a18211b6b035afe0bcf1e649 (patch)
treeb6640f0c10e8e7a404adb901341f6a55247e2002 /Include/longobject.h
parentfd847b23e64180d117af44e51eeb03b61e2f04d2 (diff)
downloadcpython-5eae2c160f6e00a1a18211b6b035afe0bcf1e649.zip
cpython-5eae2c160f6e00a1a18211b6b035afe0bcf1e649.tar.gz
cpython-5eae2c160f6e00a1a18211b6b035afe0bcf1e649.tar.bz2
Moved LONG_LONG #define from here to pyport.h.
Diffstat (limited to 'Include/longobject.h')
-rw-r--r--Include/longobject.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index f8a6408..8fa0bbd 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -50,9 +50,6 @@ extern DL_IMPORT(void *) PyLong_AsVoidPtr(PyObject *);
#ifndef ULONGLONG_MAX
#define ULONGLONG_MAX 0xffffffffffffffffULL
#endif
-#ifndef LONG_LONG
-#define LONG_LONG long long
-#endif
extern DL_IMPORT(PyObject *) PyLong_FromLongLong(LONG_LONG);
extern DL_IMPORT(PyObject *) PyLong_FromUnsignedLongLong(unsigned LONG_LONG);