shithub: scc

ref: 91e5d483f7533538e544cb2b0d213f954872b70d
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');
}