shithub: scc

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