diff options
author | Armin Rigo <arigo@tunes.org> | 2003-10-25 14:29:27 +0000 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2003-10-25 14:29:27 +0000 |
commit | 014e8f5d9c17f949f1b7723f24d594ef2f808172 (patch) | |
tree | 875caee1510dd6a6a288a71e570ce2cc163b4463 /Python/errors.c | |
parent | 2f35ae14ff4a8f0c47427e8556c185cc14290f28 (diff) | |
download | cpython-014e8f5d9c17f949f1b7723f24d594ef2f808172.tar.gz |
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 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 |