forked from KolibriOS/kolibrios
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
|
||
|
}
|