kolibrios/programs/develop/ktcc/trunk/libc/stdio/fflush.c
siemargl ace23ebbe2 libc testsuite + fixes
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
2016-05-19 12:15:22 +00:00

10 lines
204 B
C

#include <stdio.h>
int fflush(FILE* file)
// file can be zero, as flush all
{
if (file && (file->mode & 3)==FILE_OPEN_READ)
return 0;
return(0); // always good, as no write buffering
}