shithub: scc

ref: 66d45bd97edc7c35b3b7e7dc7ef23f60c5d863ab
dir: /src/libc/stdio/puts.c/

View raw version
#include <stdio.h>

#undef puts

int
puts(const char *str)
{
	int ch;

	while (ch = *str++)
		putchar(ch);
	return putchar('\n');
}