blob: ca520dbf9ff321e945662c91f69d0beb55bec9c2 [file] [log] [blame]
#include "stdio_impl.h"
int puts(const char* s) {
int r;
FLOCK(stdout);
r = -(fputs(s, stdout) < 0 || putc_unlocked('\n', stdout) < 0);
FUNLOCK(stdout);
return r;
}