FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/puts.c @ 914:de0505be800d
fc-fsio: create-std-dirs implemented
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Tue, 08 Sep 2015 18:08:03 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }