Subversion Repositories Kolibri OS

Rev

Rev 647 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2. int fflush(FILE* file)
  3. // file can be zero, as flush all
  4. {
  5.         if (file && (file->mode & 3)==FILE_OPEN_READ)
  6.                 return 0;
  7.  
  8.         return(0);  // always good, as no write buffering
  9. }
  10.