shithub: scc

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