mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-18 21:02:34 +03:00
7 lines
120 B
C
7 lines
120 B
C
|
#include <stdio.h>
|
||
|
int fflush(FILE* file)
|
||
|
{
|
||
|
if ((file->mode & 3)==FILE_OPEN_READ)
|
||
|
return 0;
|
||
|
return(EOF);
|
||
|
}
|