FreeCalypso > hg > freecalypso-tools
view target-utils/libprintf/putchar.c @ 900:8171c5c0d804
rvinterf tree: definitions for new version of TCH tap feature
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 13 Dec 2022 03:01:41 +0000 |
parents | e7502631a0f9 |
children |
line wrap: on
line source
extern void serial_out(); void putchar(ch) { if (ch == '\n') serial_out('\r'); serial_out(ch); }