Sign in
android-kvm
/
kvm-unit-tests
/
3d83840dba14874b359e23204b709eb2e0f12d8e
/
.
/
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
;
}