add ABI compat aliases for a number of locale_t functions
[musl] / 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);