add ABI compat aliases for a number of locale_t functions
[musl] / src / locale / towupper_l.c
1 #include <wctype.h>
2 #include "libc.h"
3
4 wint_t towupper_l(wint_t c, locale_t l)
5 {
6         return towupper(c);
7 }
8
9 weak_alias(towupper_l, __towupper_l);