Subversion Repositories Kolibri OS

Rev

Rev 8730 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2. #include <errno.h>
  3. #include <sys/ksys.h>
  4.  
  5. int fputc(int c, FILE *stream)
  6. {
  7.     if(fwrite(&c, sizeof(char), 1, stream)==1){
  8.         return c;
  9.     }else{
  10.         return EOF;
  11.     }
  12. }