move accept4, dup3, and pipe2 to non-linux-specific locations
[musl] / src / stdio / getwc.c
1 #include "stdio_impl.h"
2
3 wint_t getwc(FILE *f)
4 {
5         return fgetwc(f);
6 }