fflush.c (119B)
1 2 #include "ioprivate.h" 3 4 int fflush(FILE *f) 5 { 6 int rc = __writebuf(f, f->obuf, f->opos); 7 f->opos = 0; 8 return rc; 9 } 10