shithub: scc

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