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