FreeCalypso > hg > freecalypso-sw
view target-utils/libprintf/putchar.c @ 834:91ed96b28c7a
gsm-fw/g23m-glue: stub Makefile hierarchy created
| author | Space Falcon <falcon@ivan.Harhan.ORG> |
|---|---|
| date | Thu, 23 Apr 2015 06:57:16 +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); }
