github.com/afumu/libc@v0.0.6/musl/src/stdio/getw.c (about)

     1  #define _GNU_SOURCE
     2  #include <stdio.h>
     3  
     4  int getw(FILE *f)
     5  {
     6  	int x;
     7  	return fread(&x, sizeof x, 1, f) ? x : EOF;
     8  }