puts.c\stdio\src - musl - musl - an implementation of the standard library for Linux-based systems

index : musl
musl - an implementation of the standard library for Linux-based systems
summary refs log tree commit diff
path: root/src/stdio/puts.c
blob: 5a38a49b975adcad3192eda3148ef1acf55ad0df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#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;
}
generated by cgit v1.2.1 (git 2.18.0) at 2025年09月06日 23:27:18 +0000

AltStyle によって変換されたページ (->オリジナル) /