fix error checking for \ at end of regex (this was broken previously)
[musl] / src / stdio / getwc.c
1 #include "stdio_impl.h"
2
3 wint_t getwc(FILE *f)
4 {
5         return fgetwc(f);
6 }