implement flockfile api, rework stdio locking
[musl] / src / stdio / puts.c
1 #include "stdio_impl.h"
2
3 int puts(const char *s)
4 {
5         return -(fputs(s, stdout) < 0 || putchar('\n') < 0);
6 }