shithub: scc

ref: 05f7f88c948840fbfcabc5e8e0e946e705530f80
dir: /lib/c/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');
}