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