FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/putchar.c @ 122:28f967578233
RVT compiles
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Thu, 31 Oct 2013 04:37:17 +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); }