Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
647 andrew_pro 1
#include 
2
int fflush(FILE* file)
6433 siemargl 3
// file can be zero, as flush all
647 andrew_pro 4
{
6433 siemargl 5
	if (file && (file->mode & 3)==FILE_OPEN_READ)
647 andrew_pro 6
  		return 0;
6433 siemargl 7
 
8
  	return(0);  // always good, as no write buffering
9
}