FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/putchar.c @ 1028:71bbddbcc6a1
fc-shell: tch record implemented
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 31 May 2016 00:43:00 +0000 |
parents | 40f607bb0a2c |
children |
line wrap: on
line source
extern void serial_out(); void putchar(ch) { if (ch == '\n') serial_out('\r'); serial_out(ch); }