Home | History | Annotate | Download | only in musl-locale
      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);
     10