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

wctype_t wctype_l(const char *s, locale_t l)
{
	return wctype(s);
}

weak_alias(wctype_l, __wctype_l);