diff options
Diffstat (limited to 'libc/stdio/stdio.c')
-rw-r--r-- | libc/stdio/stdio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/stdio/stdio.c b/libc/stdio/stdio.c index d35dd7a66..45cd0b8ec 100644 --- a/libc/stdio/stdio.c +++ b/libc/stdio/stdio.c @@ -193,10 +193,10 @@ FILE *_free_file_list = 0; char _free_buffer_index = FIXED_BUFFERS; /* - * __stdio_close_all is automatically when exiting if stdio is used. + * __stdio_flush_buffers is automatically when exiting if stdio is used. * See misc/internals/__uClibc_main.c and and stdlib/atexit.c. */ -void __stdio_close_all(void) +void __stdio_flush_buffers(void) { fflush(NULL); /* Files will be closed on _exit call. */ } |