fflush.c - vx32 - Local 9vx git repository for patches.
 (HTM) git clone git://r-36.net/vx32
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
       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