FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 741:6e810441f677
rr_forf.c compiles
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Sun, 05 Oct 2014 22:01:15 +0000 |
| parents | 40f607bb0a2c |
| children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }
