projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
remove another invalid skip of locking in ungetwc
[oweals/musl.git]
/
src
/
stdio
/
putw.c
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
}