Subversion Repositories Kolibri OS

Rev

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

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int fputs(const char *str, FILE *stream){
  5.     return fwrite(str, sizeof(char), strlen(str), stream);
  6. }