move delay code into separate function.
[AROS.git] / rom / debug / kgetchar.c
blob386cd437e9e057583d61f82893d238a48893a761
1 /*
2 Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 */
8 #include <proto/debug.h>
9 #include <proto/exec.h>
11 LONG KGetChar(VOID)
13 LONG c;
16 c = RawMayGetChar();
17 while (c == -1);
19 return c;