add creal/cimag macros in complex.h (and use them in the functions defs)
[musl] / src / locale / iswprint_l.c
1 #include <wctype.h>
2
3 int iswprint_l(wint_t c, locale_t l)
4 {
5         return iswprint(c);
6 }