FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/putchar.c @ 454:8d5a9f254dfc
OSL: os_tim_fl.c started
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Mon, 23 Jun 2014 04:20:09 +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); }