diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-09 00:55:06 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-09 00:55:06 +0000 |
commit | ee5a5b53be32a798855c60e1a6fb5934d7a03465 (patch) | |
tree | 87ca5b6f967df7d1ca3860a8018b1d323c1969b3 /Include/rangeobject.h | |
parent | 2a9034d3c9b7801b02e97521937eb0666f7bebf4 (diff) | |
download | cpython-ee5a5b53be32a798855c60e1a6fb5934d7a03465.tar.gz |
ANSI-fication and Py_PROTO extermination.
Diffstat (limited to 'Include/rangeobject.h')
-rw-r--r-- | Include/rangeobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/rangeobject.h b/Include/rangeobject.h index 77398697f4..a208581b6c 100644 --- a/Include/rangeobject.h +++ b/Include/rangeobject.h @@ -22,4 +22,4 @@ extern DL_IMPORT(PyTypeObject) PyRange_Type; #define PyRange_Check(op) ((op)->ob_type == &PyRange_Type) -extern DL_IMPORT(PyObject *) PyRange_New Py_PROTO((long, long, long, int)); +extern DL_IMPORT(PyObject *) PyRange_New(long, long, long, int); |