1 #include "stdio_impl.h"
3 static int __fflush_unlocked(FILE *f)
5 /* If writing, flush output */
6 if (f->wpos > f->wbase) {
8 if (!f->wpos) return EOF;
11 /* If reading, sync position, per POSIX */
12 if (f->rpos < f->rend) f->seek(f, f->rpos-f->rend, SEEK_CUR);
14 /* Clear read and write modes */
15 f->wpos = f->wbase = f->wend = 0;
16 f->rpos = f->rend = 0;
21 /* stdout.c will override this if linked */
22 static FILE *volatile dummy = 0;
23 weak_alias(dummy, __stdout_used);
31 r = __fflush_unlocked(f);
36 r = __stdout_used ? fflush(__stdout_used) : 0;
39 for (f=libc.ofl_head; f; f=f->next) {
41 if (f->wpos > f->wbase) r |= __fflush_unlocked(f);
49 weak_alias(__fflush_unlocked, fflush_unlocked);