summaryrefslogtreecommitdiff
path: root/src/locale/towupper_l.c
blob: ad02a4beab3ec1add96a46c89cdb154d8b6656bb (plain) (blame)
1
2
3
4
5
6
7
8
9
#include <wctype.h>
#include "libc.h"

wint_t towupper_l(wint_t c, locale_t l)
{
	return towupper(c);
}

weak_alias(towupper_l, __towupper_l);