Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d4-s2-release
/
.
/
src
/
stdio
/
getw.c
blob: 73d2c0d5c6c0914322903e0c30e3f93c0f9336cc [
file
] [
log
] [
blame
] [
edit
]
#define
_GNU_SOURCE
#include
<stdio.h>
int
getw
(
FILE
*
f
)
{
int
x
;
return
fread
(&
x
,
sizeof
x
,
1
,
f
)
?
x
:
EOF
;
}