fix buffer overrun in getgrent code when there are no group members
[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 }