summaryrefslogtreecommitdiff
path: root/src/wctype/iswlower.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wctype/iswlower.c')
-rw-r--r--src/wctype/iswlower.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/wctype/iswlower.c b/src/wctype/iswlower.c
index b5a9d90b..44c044c8 100644
--- a/src/wctype/iswlower.c
+++ b/src/wctype/iswlower.c
@@ -1,12 +1,11 @@
-#if 0
-
#include <wctype.h>
#include <wchar.h>
-#include "_assert.h"
+#include "_safety.h"
/** test whether a character is a lowercase letter **/
int iswlower(wint_t wc)
{
+ SIGNAL_SAFE(0);
ASSERT_REPRESENTABLE(wc, WCHAR_MIN, WCHAR_MAX, "wchar_t", WEOF);
wctype_t lower = wctype("lower");
@@ -28,6 +27,3 @@ cclass(lower) in the current locale.
/*
STDC(199409)
*/
-
-
-#endif