shithub: scc

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