shithub: scc

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