begin sys/user.h and sys/reg.h fixes for ports
[musl] / src / stdio / getwc.c
1 #include "stdio_impl.h"
2 #include <wchar.h>
3
4 wint_t getwc(FILE *f)
5 {
6         return fgetwc(f);
7 }