repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
apply hidden visibility to sigreturn code fragments
[musl.git]
/
src
/
stdio
/
getw.c
blob
73d2c0d5c6c0914322903e0c30e3f93c0f9336cc
1
#define _GNU_SOURCE
2
#include <stdio.h>
3
4
int
getw
(
FILE
*
f
)
5
{
6
int
x
;
7
return
fread
(&
x
,
sizeof
x
,
1
,
f
) ?
x
:
EOF
;
8
}