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/longintrepr.h | |
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/longintrepr.h')
-rw-r--r-- | Include/longintrepr.h | 2 |
1 files changed, 1 insertions, 1 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 } |