FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 113:3b2e941043d8
nuc-fw/bsp: niq32.c compiles
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 20 Oct 2013 21:12:41 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }