forked from KolibriOS/kolibrios
ace23ebbe2
git-svn-id: svn://kolibrios.org@6433 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
204 B
C
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
|
|
}
|