shithub: scc

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