mirror of
https://github.com/fluencelabs/musl
synced 2025-07-03 00:22:11 +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);
|
||
|
}
|