FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 424:1ec83a5fa8b3
loadtools: README update
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 19 Jun 2014 05:50:43 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }