mirror of
https://github.com/fluencelabs/musl
synced 2025-04-29 17:12:14 +00:00
7 lines
107 B
C
7 lines
107 B
C
|
#include "stdio_impl.h"
|
||
|
|
||
|
int puts(const char *s)
|
||
|
{
|
||
|
return -(fputs(s, stdout) < 0 || putchar('\n') < 0);
|
||
|
}
|