musl-tcc/src/stdio/putw.c

8 lines
112 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#define _GNU_SOURCE
#include <stdio.h>
int putw(int x, FILE *f)
{
return (int)fwrite(&x, sizeof x, 1, f)-1;
}