shithub: scc

ref: 4b60622e5ebcec0579c17269c4f4257d3fff9c46
dir: /lib/c/puts.c/

View raw version

#include <stdio.h>

int
puts(const char *str)
{
	int ch;

	while (ch = *str)
		putchar(ch);
	return putchar('\n');
}