summaryrefslogblamecommitdiff
path: root/src/stdio/puts.c
blob: 5a38a49b975adcad3192eda3148ef1acf55ad0df (plain) (tree)
1
2
3
4
5
6
7
8
9



                       

                      
                                                                       

                        
 
#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;
}