shithub: scc

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