summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-07-10 20:14:13 +0000
committerGuido van Rossum <guido@python.org>2007-07-10 20:14:13 +0000
commita540c91cc69b26ff7f1afb8674f96de1da9f5c82 (patch)
treecc69141817d169475a4abbcb833b90b1cb5985aa /Python/pythonrun.c
parent9def62114825d682d2b494e1ca3f604ce6f3a869 (diff)
downloadcpython-a540c91cc69b26ff7f1afb8674f96de1da9f5c82.tar.gz
Silence compiler warning.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
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");