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