shithub: scc

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