musl/src/stdio/putw.c

8 lines
115 B
C
Raw Normal View History

#define _GNU_SOURCE
2011-02-12 00:22:29 -05:00
#include <stdio.h>
int putw(int x, FILE *f)
{
return fwrite(&x, sizeof x, 1, f) ? x : EOF;
}