summaryrefslogtreecommitdiff
path: root/Include/rangeobject.h
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-07-09 00:55:06 +0000
committerFred Drake <fdrake@acm.org>2000-07-09 00:55:06 +0000
commitee5a5b53be32a798855c60e1a6fb5934d7a03465 (patch)
tree87ca5b6f967df7d1ca3860a8018b1d323c1969b3 /Include/rangeobject.h
parent2a9034d3c9b7801b02e97521937eb0666f7bebf4 (diff)
downloadcpython-ee5a5b53be32a798855c60e1a6fb5934d7a03465.tar.gz
ANSI-fication and Py_PROTO extermination.
Diffstat (limited to 'Include/rangeobject.h')
-rw-r--r--Include/rangeobject.h2
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);