summaryrefslogtreecommitdiffstats
path: root/Include/longobject.h
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-07-07 15:53:28 (GMT)
committerTim Peters <tim.peters@gmail.com>2000-07-07 15:53:28 (GMT)
commit9f688bf9d21547bf7bd6e931c0272abb189c7d8c (patch)
tree49828874144ab07c0f2ecbeb1a06823855988079 /Include/longobject.h
parent4707320566d96836b4e976838b1746ac371b26d1 (diff)
downloadcpython-9f688bf9d21547bf7bd6e931c0272abb189c7d8c.zip
cpython-9f688bf9d21547bf7bd6e931c0272abb189c7d8c.tar.gz
cpython-9f688bf9d21547bf7bd6e931c0272abb189c7d8c.tar.bz2
Some cleanup of longs in prepartion for Cray J90 fixes: got
rid of Py_PROTO, switched to ANSI function decls, and did some minor fiddling.
Diffstat (limited to 'Include/longobject.h')
-rw-r--r--Include/longobject.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/Include/longobject.h b/Include/longobject.h
index aed56ef..f8a6408 100644
--- a/Include/longobject.h
+++ b/Include/longobject.h
@@ -22,14 +22,14 @@ extern DL_IMPORT(PyTypeObject) PyLong_Type;
#define PyLong_Check(op) ((op)->ob_type == &PyLong_Type)
-extern DL_IMPORT(PyObject *) PyLong_FromLong Py_PROTO((long));
-extern DL_IMPORT(PyObject *) PyLong_FromUnsignedLong Py_PROTO((unsigned long));
-extern DL_IMPORT(PyObject *) PyLong_FromDouble Py_PROTO((double));
-extern DL_IMPORT(long) PyLong_AsLong Py_PROTO((PyObject *));
-extern DL_IMPORT(unsigned long) PyLong_AsUnsignedLong Py_PROTO((PyObject *));
-extern DL_IMPORT(double) PyLong_AsDouble Py_PROTO((PyObject *));
-extern DL_IMPORT(PyObject *) PyLong_FromVoidPtr Py_PROTO((void *));
-extern DL_IMPORT(void *) PyLong_AsVoidPtr Py_PROTO((PyObject *));
+extern DL_IMPORT(PyObject *) PyLong_FromLong(long);
+extern DL_IMPORT(PyObject *) PyLong_FromUnsignedLong(unsigned long);
+extern DL_IMPORT(PyObject *) PyLong_FromDouble(double);
+extern DL_IMPORT(long) PyLong_AsLong(PyObject *);
+extern DL_IMPORT(unsigned long) PyLong_AsUnsignedLong(PyObject *);
+extern DL_IMPORT(double) PyLong_AsDouble(PyObject *);
+extern DL_IMPORT(PyObject *) PyLong_FromVoidPtr(void *);
+extern DL_IMPORT(void *) PyLong_AsVoidPtr(PyObject *);
#ifdef HAVE_LONG_LONG
@@ -54,14 +54,14 @@ extern DL_IMPORT(void *) PyLong_AsVoidPtr Py_PROTO((PyObject *));
#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 *));
-extern DL_IMPORT(unsigned LONG_LONG) PyLong_AsUnsignedLongLong Py_PROTO((PyObject *));
+extern DL_IMPORT(PyObject *) PyLong_FromLongLong(LONG_LONG);
+extern DL_IMPORT(PyObject *) PyLong_FromUnsignedLongLong(unsigned LONG_LONG);
+extern DL_IMPORT(LONG_LONG) PyLong_AsLongLong(PyObject *);
+extern DL_IMPORT(unsigned LONG_LONG) PyLong_AsUnsignedLongLong(PyObject *);
#endif /* HAVE_LONG_LONG */
-DL_IMPORT(PyObject *) PyLong_FromString Py_PROTO((char *, char **, int));
-DL_IMPORT(PyObject *) PyLong_FromUnicode Py_PROTO((Py_UNICODE*, int, int));
+DL_IMPORT(PyObject *) PyLong_FromString(char *, char **, int);
+DL_IMPORT(PyObject *) PyLong_FromUnicode(Py_UNICODE*, int, int);
#ifdef __cplusplus
}