summaryrefslogtreecommitdiff
path: root/src/wctype
diff options
context:
space:
mode:
Diffstat (limited to 'src/wctype')
-rw-r--r--src/wctype/iswalnum.c5
-rw-r--r--src/wctype/iswalpha.c5
-rw-r--r--src/wctype/iswblank.c5
-rw-r--r--src/wctype/iswcntrl.c5
-rw-r--r--src/wctype/iswctype.c5
-rw-r--r--src/wctype/iswdigit.c5
-rw-r--r--src/wctype/iswgraph.c5
-rw-r--r--src/wctype/iswlower.c5
-rw-r--r--src/wctype/iswprint.c5
-rw-r--r--src/wctype/iswpunct.c5
-rw-r--r--src/wctype/iswspace.c5
-rw-r--r--src/wctype/iswupper.c5
-rw-r--r--src/wctype/iswxdigit.c5
-rw-r--r--src/wctype/towctrans.c5
-rw-r--r--src/wctype/towlower.c5
-rw-r--r--src/wctype/towupper.c5
-rw-r--r--src/wctype/wctrans.c5
-rw-r--r--src/wctype/wctype.c5
18 files changed, 90 insertions, 0 deletions
diff --git a/src/wctype/iswalnum.c b/src/wctype/iswalnum.c
index 13f9368d..94c67f95 100644
--- a/src/wctype/iswalnum.c
+++ b/src/wctype/iswalnum.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <limits.h>
#include <wchar.h>
@@ -26,3 +28,6 @@ cclass(alpha) or cclass(digit) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswalpha.c b/src/wctype/iswalpha.c
index d5efc1c2..77df7103 100644
--- a/src/wctype/iswalpha.c
+++ b/src/wctype/iswalpha.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(alpha) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswblank.c b/src/wctype/iswblank.c
index 1709a7a6..568b126a 100644
--- a/src/wctype/iswblank.c
+++ b/src/wctype/iswblank.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include "_assert.h"
@@ -25,3 +27,6 @@ class cclass(blank) in the current locale.
/*
STDC(199901)
*/
+
+
+#endif
diff --git a/src/wctype/iswcntrl.c b/src/wctype/iswcntrl.c
index aee9ed51..a385e4e7 100644
--- a/src/wctype/iswcntrl.c
+++ b/src/wctype/iswcntrl.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(cntrl) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswctype.c b/src/wctype/iswctype.c
index acfde506..fcf84932 100644
--- a/src/wctype/iswctype.c
+++ b/src/wctype/iswctype.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -30,3 +32,6 @@ returned by fn(wctype), in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswdigit.c b/src/wctype/iswdigit.c
index e96492bb..23fae1e3 100644
--- a/src/wctype/iswdigit.c
+++ b/src/wctype/iswdigit.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(digit) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswgraph.c b/src/wctype/iswgraph.c
index 2c07eab6..3175b232 100644
--- a/src/wctype/iswgraph.c
+++ b/src/wctype/iswgraph.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(graph) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswlower.c b/src/wctype/iswlower.c
index 9a174a4d..b5a9d90b 100644
--- a/src/wctype/iswlower.c
+++ b/src/wctype/iswlower.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(lower) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswprint.c b/src/wctype/iswprint.c
index 3d8c6682..5b797d47 100644
--- a/src/wctype/iswprint.c
+++ b/src/wctype/iswprint.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(print) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswpunct.c b/src/wctype/iswpunct.c
index 0b4a2d3a..a98792e9 100644
--- a/src/wctype/iswpunct.c
+++ b/src/wctype/iswpunct.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(punct) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswspace.c b/src/wctype/iswspace.c
index 8b1b3702..d3969043 100644
--- a/src/wctype/iswspace.c
+++ b/src/wctype/iswspace.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ cclass(space) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswupper.c b/src/wctype/iswupper.c
index 8578a863..b0c5cace 100644
--- a/src/wctype/iswupper.c
+++ b/src/wctype/iswupper.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -27,3 +29,6 @@ cclass(upper) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/iswxdigit.c b/src/wctype/iswxdigit.c
index 655372d0..540834c6 100644
--- a/src/wctype/iswxdigit.c
+++ b/src/wctype/iswxdigit.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -26,3 +28,6 @@ class cclass(xdigit) in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/towctrans.c b/src/wctype/towctrans.c
index db35dee3..68ebcaf0 100644
--- a/src/wctype/towctrans.c
+++ b/src/wctype/towctrans.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -28,3 +30,6 @@ fn(wctrans), in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/towlower.c b/src/wctype/towlower.c
index 46598cae..33714643 100644
--- a/src/wctype/towlower.c
+++ b/src/wctype/towlower.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include <stdlib.h>
@@ -31,3 +33,6 @@ lowercase letter in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/towupper.c b/src/wctype/towupper.c
index 16e2334a..cb2b8096 100644
--- a/src/wctype/towupper.c
+++ b/src/wctype/towupper.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <wchar.h>
#include "_assert.h"
@@ -30,3 +32,6 @@ uppercase letter in the current locale.
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/wctrans.c b/src/wctype/wctrans.c
index 975a04cb..2dbd25fe 100644
--- a/src/wctype/wctrans.c
+++ b/src/wctype/wctrans.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <string.h>
#include "_assert.h"
@@ -36,3 +38,6 @@ ctrans(toupper).
/*
STDC(199409)
*/
+
+
+#endif
diff --git a/src/wctype/wctype.c b/src/wctype/wctype.c
index 5c3acbfa..0a26bc4a 100644
--- a/src/wctype/wctype.c
+++ b/src/wctype/wctype.c
@@ -1,3 +1,5 @@
+#if 0
+
#include <wctype.h>
#include <string.h>
#include "_assert.h"
@@ -57,3 +59,6 @@ cclass(print), cclass(punct), cclass(space), cclass(upper), and cclass(xdigit).
/*
STDC(199409)
*/
+
+
+#endif