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