1 2 3 4 5 6 7
#define _GNU_SOURCE #include <stdio.h> int putw(int x, FILE *f) { return (int)fwrite(&x, sizeof x, 1, f)-1; }