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

int iswctype_l(wint_t c, wctype_t t, locale_t l)
{
	return iswctype(c, t);
}

weak_alias(iswctype_l, __iswctype_l);