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