repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add missing -static
[AROS.git]
/
rom
/
debug
/
kgetchar.c
blob
386cd437e9e057583d61f82893d238a48893a761
1
/*
2
Copyright © 1995-2013, The AROS Development Team. All rights reserved.
3
$Id$
4
5
Desc:
6
*/
7
8
#include <proto/debug.h>
9
#include <proto/exec.h>
10
11
LONG
KGetChar
(
VOID
)
12
{
13
LONG c
;
14
15
do
16
c
=
RawMayGetChar
();
17
while
(
c
== -
1
);
18
19
return
c
;
20
}