Sign in
mojo
/
mojo-tools
/
aac1322758450a256de74cf16f6e7deaed711d61
/
.
/
fusl
/
src
/
stdio
/
putw.c
blob: 74780710b2b97d9e071591ccee694ab0c7f933fe [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
<stdio.h>
int
putw
(
int
x
,
FILE
*
f
)
{
return
(
int
)
fwrite
(&
x
,
sizeof
x
,
1
,
f
)
-
1
;
}