FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 400:f027c6fbe37e
fc-loadtool flash: first round of refactoring for CFI
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Sun, 15 Jun 2014 20:05:54 +0000 |
| parents | 40f607bb0a2c |
| children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }
