summaryrefslogtreecommitdiff
path: root/wctype.c
blob: 89e2edb6bf9e0241d725f8225117ec017a950478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#if defined __STDC_VERSION__
#include <wctype.h>
#include "_wctype.h"
#include "test.h"

void test_wctype_h(void)
{
	wint_t wint;
	wctrans_t wctrans;
	wctype_t wctype;
	(void)wint;
	(void)wctrans;
	(void)wctype;

	testing_header("wctype.h");

	testing_end();
}

#else
void test_wctype_h(void)
{
}
#endif