shithub: scc

ref: 934e2128978ff00ff47a6bd148e209f73b4b6252
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');
}