diff options
author | Guido van Rossum <guido@python.org> | 1998-04-10 22:16:39 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-04-10 22:16:39 (GMT) |
commit | 1109fbca76d08bb2f11f2899580d2ab7dbe796fa (patch) | |
tree | d52f999b597674ea5648059207a1eccaf173e141 /Objects/longobject.c | |
parent | bb3649e2ba386adc16fadc2e0d1f2606c047e6aa (diff) | |
download | cpython-1109fbca76d08bb2f11f2899580d2ab7dbe796fa.zip cpython-1109fbca76d08bb2f11f2899580d2ab7dbe796fa.tar.gz cpython-1109fbca76d08bb2f11f2899580d2ab7dbe796fa.tar.bz2 |
Make new gcc -Wall happy
Diffstat (limited to 'Objects/longobject.c')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index d95e86c..becf1bc 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -497,7 +497,7 @@ PyLong_FromString(str, pend, base) static PyLongObject *x_divrem Py_PROTO((PyLongObject *, PyLongObject *, PyLongObject **)); static PyObject *long_pos Py_PROTO((PyLongObject *)); -static long_divrem Py_PROTO((PyLongObject *, PyLongObject *, +static int long_divrem Py_PROTO((PyLongObject *, PyLongObject *, PyLongObject **, PyLongObject **)); /* Long division with remainder, top-level routine */ |