FreeCalypso > hg > freecalypso-sw
view loadagent/libprintf/puts.c @ 10:e2e80a09338e
fc-sertool actually works; output from loadagent is visible!
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Wed, 01 May 2013 03:41:42 +0000 |
parents | 45bf8af5f061 |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }