fix logic error in fread
[musl] / src / stdio / getwc.c
1 #include "stdio_impl.h"
2
3 wint_t getwc(FILE *f)
4 {
5         return fgetwc(f);
6 }