Updated debug output.
[AROS.git] / rom / debug / kgetchar.c
blob431d9c849143fc5a7d46bbe3a716581296a9d415
1 #include <proto/debug.h>
2 #include <proto/exec.h>
4 LONG KGetChar(VOID)
6 LONG c;
8 do
9 c = RawMayGetChar();
10 while (c == -1);
12 return c;