Sign in
mojo
/
mojo-tools
/
6d10d6bbfecec30019b2fe5c06e28a809f0d9753
/
.
/
fusl
/
src
/
stdio
/
getw.c
blob: f45f239c41a37c305a7c1a5c445ce6601a2bd408 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<stdio.h>
int
getw
(
FILE
*
f
)
{
int
x
;
return
fread
(&
x
,
sizeof
x
,
1
,
f
)
?
x
:
EOF
;
}