rework langinfo code for ABI compat and for use by time code
[musl] / src / locale / towlower_l.c
1 #include <wctype.h>
2 #include "libc.h"
3
4 wint_t towlower_l(wint_t c, locale_t l)
5 {
6         return towlower(c);
7 }
8
9 weak_alias(towlower_l, __towlower_l);