FreeCalypso > hg > freecalypso-sw
view loadagent/serwait.c @ 4:5c7b3d5d5702
libprintf compiles with Anshit C GCC
| author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
|---|---|
| date | Mon, 29 Apr 2013 07:19:34 +0000 |
| parents | da98dc08f575 |
| children |
line wrap: on
line source
/* this C module is a wrapper around serio.S */ /* we implement serial_in_wait() as a C wrapper around serial_in_poll() */ extern int serial_in_poll(); int serial_in_wait() { register int c; do c = serial_in_poll(); while (c < 0); return c; }
