From 092381a9799ebadba1199eb83e40f880a9bb58ee Mon Sep 17 00:00:00 2001 From: Armin Rigo Date: Sat, 25 Oct 2003 14:29:27 +0000 Subject: Made function declaration a proper C prototype --- Python/errors.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/errors.c') diff --git a/Python/errors.c b/Python/errors.c index 1788cdd33f..4d88d2d582 100644 --- a/Python/errors.c +++ b/Python/errors.c @@ -599,7 +599,7 @@ PyErr_WriteUnraisable(PyObject *obj) Py_XDECREF(tb); } -extern PyObject *PyModule_GetWarningsModule(); +extern PyObject *PyModule_GetWarningsModule(void); /* Function to issue a warning message; may raise an exception. */ int -- cgit v1.2.1