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
bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git]
/
src
/
stdio
/
putw.c
blob
0ff9d7fbffb98a5d5919a3e8658678095674a3b7
1
#define _GNU_SOURCE
2
#include <stdio.h>
3
4
int
putw
(
int
x
,
FILE
*
f
)
5
{
6
return
(
int
)
fwrite
(&
x
,
sizeof
x
,
1
,
f
)-
1
;
7
}