add __sigsetjmp ABI-compat alias for sigsetjmp
[oweals/musl.git] / src / locale / wctype_l.c
1 #include <wctype.h>
2 #include "libc.h"
3
4 wctype_t wctype_l(const char *s, locale_t l)
5 {
6         return wctype(s);
7 }
8
9 weak_alias(wctype_l, __wctype_l);