diff options
author | Guido van Rossum <guido@python.org> | 2007-07-10 20:14:13 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-10 20:14:13 +0000 |
commit | a540c91cc69b26ff7f1afb8674f96de1da9f5c82 (patch) | |
tree | cc69141817d169475a4abbcb833b90b1cb5985aa /Python/pythonrun.c | |
parent | 9def62114825d682d2b494e1ca3f604ce6f3a869 (diff) | |
download | cpython-a540c91cc69b26ff7f1afb8674f96de1da9f5c82.tar.gz |
Silence compiler warning.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index d8bc6466bf..bb69b19142 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -294,7 +294,7 @@ extern void dump_counts(FILE*); /* Flush stdout and stderr */ void -flush_std_files() +flush_std_files(void) { PyObject *fout = PySys_GetObject("stdout"); PyObject *ferr = PySys_GetObject("stderr"); |