shithub: scc

ref: 82eb1ebc8c335785da14e6e59e7c109256b5ed3c
dir: /lib/c/puts.c/

View raw version

#include <stdio.h>
#undef puts

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

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