blob: a4d5f86a7076356d91f1ba6d6cdfe9171b554f5a [file] [log] [blame]
#include <wctype.h>
#include "libc.h"
int towupper_l(int c, locale_t l)
{
return towupper(c);
}
weak_alias(towupper_l, __towupper_l);