diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-27 06:19:22 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-27 06:19:22 +0000 |
commit | 576e0c30df67888f91091a87b4093c2ee7f33ce3 (patch) | |
tree | b27e4def3b8e52ad1c0a5ab048831c6d8e224558 /Python/pythonrun.c | |
parent | c1727dffb9ab72e5851120028edd43027a0b4800 (diff) | |
download | cpython-576e0c30df67888f91091a87b4093c2ee7f33ce3.tar.gz |
Make some internal functions static
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 542fe3859d..a0019c4c4b 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -295,7 +295,7 @@ extern void dump_counts(FILE*); /* Flush stdout and stderr */ -void +static void flush_std_files(void) { PyObject *fout = PySys_GetObject("stdout"); |