view target-utils/libprintf/puts.c @ 118:21de8d8e6ea7

checking in Riviera code from the Sotomodem version
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Tue, 29 Oct 2013 07:03:45 +0000
parents 40f607bb0a2c
children
line wrap: on
line source

void
puts(s)
	char *s;
{
	int c;

	while (c = *s++)
		putchar(c);
	putchar('\n');
}