1 #include <wctype.h>
2 #include "libc.h"
3 
towlower_l(int c,locale_t l)4 int towlower_l(int c, locale_t l)
5 {
6 	return towlower(c);
7 }
8 
9 weak_alias(towlower_l, __towlower_l);
10