summaryrefslogtreecommitdiff
path: root/Include/longintrepr.h
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-07-07 15:53:28 +0000
committerTim Peters <tim.peters@gmail.com>2000-07-07 15:53:28 +0000
commit9f688bf9d21547bf7bd6e931c0272abb189c7d8c (patch)
tree49828874144ab07c0f2ecbeb1a06823855988079 /Include/longintrepr.h
parent4707320566d96836b4e976838b1746ac371b26d1 (diff)
downloadcpython-git-9f688bf9d21547bf7bd6e931c0272abb189c7d8c.tar.gz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/longintrepr.h b/Include/longintrepr.h
index 9b08397524..4ddbd06e59 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
}