Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdio.h>
  2. int fputc(int c,FILE* file)
  3. {
  4.         dword res;
  5.        
  6.         res = fwrite(&c, 1, 1, file);
  7.         if (res < 1) return EOF;
  8.        
  9.         return c;
  10. }
  11.