mirror of
https://github.com/fluencelabs/musl
synced 2025-05-11 06:37:25 +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;
|
||
|
}
|