aboutsummaryrefslogtreecommitdiffstats
path: root/io/puts.c
blob: 26c477f87dd1a03a0551e1aae8952e102a85b330 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "io.h"
#include <errno.h>

int puts(char const *string)
{
	if (fputs(string, _stdstream_wrap(stream_output)) == _eof_wrap) {
		return _eof_wrap;
	}
	return putchar('\n');
}