Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8687 turbocat 1
#include 
2
#include 
3
 
4
int fputs(const char *str, FILE *stream){
5
    return fwrite(str, sizeof(char), strlen(str), stream);
6
}