FreeCalypso > hg > freecalypso-tools
view target-utils/libprintf/puts.c @ 934:0d6be90ae74f
rvinterf -v TM: send hex dump only to log file if we have one
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 23 May 2023 06:49:10 +0000 |
parents | e7502631a0f9 |
children |
line wrap: on
line source
void puts(s) char *s; { int c; while (c = *s++) putchar(c); putchar('\n'); }