FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 504:7b2ceea92a2e
osx.c: osx_alloc_prim() done
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Tue, 01 Jul 2014 19:08:20 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }