FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 492:517cde3e238e
osx.c: global data done
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 30 Jun 2014 19:31:52 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }