view target-utils/libprintf/puts.c @ 489:2a26785fb5a2

gsm-fw: GPF included in the build with feature gpf, link successful
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 29 Jun 2014 22:37:29 +0000
parents 40f607bb0a2c
children
line wrap: on
line source

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

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