diff options
author | Armin Rigo <arigo@tunes.org> | 2003-10-25 14:29:27 (GMT) |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2003-10-25 14:29:27 (GMT) |
commit | 092381a9799ebadba1199eb83e40f880a9bb58ee (patch) | |
tree | af171af09cf5f404fc9a6101953b8f5038e95b5e /Python/errors.c | |
parent | 8ed69e3389f7caf4a4f9f6ba5a09a618a528484b (diff) | |
download | cpython-092381a9799ebadba1199eb83e40f880a9bb58ee.zip cpython-092381a9799ebadba1199eb83e40f880a9bb58ee.tar.gz cpython-092381a9799ebadba1199eb83e40f880a9bb58ee.tar.bz2 |
Made function declaration a proper C prototype
Diffstat (limited to 'Python/errors.c')
-rw-r--r-- | Python/errors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c index 1788cdd..4d88d2d 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 |