FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 755:72de8fe8ef5f
sim_stk.o compiles
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sat, 11 Oct 2014 21:52:24 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }