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