fix getc - the classic error of trying to store EOF+0-255 in a char type..
[musl] / src / ctype / iswblank.c
1 #include <wchar.h>
2 #include <wctype.h>
3 #include <ctype.h>
4
5 int iswblank(wint_t wc)
6 {
7         return isblank(wc);
8 }