Sign in
android-kvm
/
kvm-unit-tests
/
67b8f46291019f350cd67d67899cb34f8d3c3a50
/
.
/
lib
/
getchar.c
blob: 26f6b6babdb8bff305b0a6d775d520e06bc943a7 [
file
] [
log
] [
blame
]
#include
"libcflat.h"
#include
"asm/barrier.h"
int
getchar
(
void
)
{
int
c
;
while
((
c
=
__getchar
())
==
-
1
)
cpu_relax
();
return
c
;
}