view target-utils/libprintf/puts.c @ 776:5a0c58760ae2

gsm-fw/g23m-aci: stub Makefile hierarchy created, hooked into make clean
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 12 Oct 2014 02:10:23 +0000
parents 40f607bb0a2c
children
line wrap: on
line source

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

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