Subversion Repositories Kolibri OS

Rev

Rev 244 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
610 andrew_pro 1
#include 
145 halyavin 2
int fflush(FILE* file)
3
{
4
	if ((file->mode & 3)==FILE_OPEN_READ)
5
  		return 0;
610 andrew_pro 6
  	return(EOF);
145 halyavin 7
}