diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-07-07 15:53:28 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-07-07 15:53:28 (GMT) |
commit | 9f688bf9d21547bf7bd6e931c0272abb189c7d8c (patch) | |
tree | 49828874144ab07c0f2ecbeb1a06823855988079 /Include | |
parent | 4707320566d96836b4e976838b1746ac371b26d1 (diff) | |
download | cpython-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')
-rw-r--r-- | Include/longintrepr.h | 2 | ||||
-rw-r--r-- | Include/longobject.h | 28 |
2 files changed, 15 insertions, 15 deletions
diff --git a/Include/longintrepr.h b/Include/longintrepr.h index 9b08397..4ddbd06 100644 --- a/Include/longintrepr.h +++ b/Include/longintrepr.h @@ -52,7 +52,7 @@ struct _longobject { digit ob_digit[1]; }; -DL_IMPORT(PyLongObject *) _PyLong_New Py_PROTO((int)); +DL_IMPORT(PyLongObject *) _PyLong_New(int); #ifdef __cplusplus } 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 } |