#include #include <__fio.h> int fputs(const char *str, FILE *fp) { while (*str) { __fio_write(fp, str++, 1); } }