mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 04:12:34 +03:00
6 lines
142 B
C
6 lines
142 B
C
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int fputs(const char *str, FILE *stream){
|
||
|
return fwrite(str, sizeof(char), strlen(str), stream);
|
||
|
}
|