shithub: scc

ref: 279bf67dfc38f55a3c9f4529799686608bd28bb4
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');
}