view target-utils/libprintf/puts.c @ 627:d04502de49ed

CHANGES: mokosrec2bin default fill byte change documented
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 28 Feb 2020 06:07:19 +0000
parents e7502631a0f9
children
line wrap: on
line source

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

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