FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 309:a7087f91c752
DAR: all C modules compile without RVM_DAR_SWE
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Mon, 17 Mar 2014 04:51:36 +0000 |
| parents | 40f607bb0a2c |
| children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }
