FreeCalypso > hg > freecalypso-sw
view gsm-fw/lldbg/getchar.c @ 968:2d986b8c0e4e
doc/Compiling: added explanation of extra host tools with library dependencies
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 07 Nov 2015 04:53:24 +0000 |
parents | f5affe83ba2d |
children |
line wrap: on
line source
extern int lldbg_serial_in_poll(); int lldbg_getchar() { register int c; do c = lldbg_serial_in_poll(); while (c < 0); return c; }