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