1
0
mirror of https://github.com/fluencelabs/musl synced 2025-06-15 16:01:41 +00:00
Files
musl/src/stdio/fputs.c

10 lines
182 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include "stdio_impl.h"
#include <string.h>
2011-02-12 00:22:29 -05:00
int fputs(const char *restrict s, FILE *restrict f)
2011-02-12 00:22:29 -05:00
{
return (int)fwrite(s, strlen(s), 1, f) - 1;
2011-02-12 00:22:29 -05:00
}
weak_alias(fputs, fputs_unlocked);