Sign in
mojo
/
mojo-tools
/
17e3b04429ce6ad836128e1ceffefd85493ec779
/
.
/
fusl
/
src
/
stdio
/
getchar.c
blob: 294737af49c7b12df7475d0af159b571e09fefc0 [
file
] [
log
] [
blame
]
#include
<stdio.h>
int
getchar
(
void
)
{
return
fgetc
(
stdin
);
}