Sign in
mojo
/
mojo-tools
/
520b7ed1860f21d38a217a053a302c77ae427324
/
.
/
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
;
}