view target-utils/libprintf/puts.c @ 801:c64bfc13292c

aci: all cmh*.c compile for the sans-data configuration
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sun, 05 Apr 2015 04:16:57 +0000
parents 40f607bb0a2c
children
line wrap: on
line source

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

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