mirror of
https://github.com/fluencelabs/musl
synced 2025-05-07 21:02:19 +00:00
8 lines
95 B
C
8 lines
95 B
C
#include <stdio.h>
|
|
|
|
int getw(FILE *f)
|
|
{
|
|
int x;
|
|
return fread(&x, sizeof x, 1, f) ? x : EOF;
|
|
}
|