summaryrefslogtreecommitdiff
path: root/wctype.c
diff options
context:
space:
mode:
Diffstat (limited to 'wctype.c')
-rw-r--r--wctype.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/wctype.c b/wctype.c
new file mode 100644
index 0000000..69cef8b
--- /dev/null
+++ b/wctype.c
@@ -0,0 +1,22 @@
+#if defined __STDC_VERSION__
+#include <wctype.h>
+#include "test.h"
+
+void test_wctype_h(void)
+{
+ wint_t wint;
+ wctrans_t wctrans;
+ wctype_t wctype;
+
+ testing_header("wctype.h");
+
+ test_defined(WEOF);
+
+ testing_end();
+}
+
+#else
+void test_wctype_h(void)
+{
+}
+#endif