0b44a031
835f9f95
400c5e5c
6e2bb7ac
1
2
3
4
5
6
7 8 9
#include "stdio_impl.h" #include <string.h> int fputs(const char *restrict s, FILE *restrict f) { return (int)fwrite(s, strlen(s), 1, f) - 1; } weak_alias(fputs, fputs_unlocked);