mirror of
https://github.com/fluencelabs/musl
synced 2025-04-29 00:52:15 +00:00
11 lines
171 B
C
11 lines
171 B
C
#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;
|
|
}
|