shithub: scc

ref: 26e92fcaa069bac388b1d0571e14957e012fdc4d
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');
}