remove LFS64 programming interfaces (macro-only) from _GNU_SOURCE
[musl] / src / ctype / iswlower.c
index c754fb9..f02a436 100644 (file)
@@ -1,9 +1,8 @@
 #include <wctype.h>
-#include "libc.h"
 
 int iswlower(wint_t wc)
 {
-       return towupper(wc) != wc || wc == 0xdf;
+       return towupper(wc) != wc;
 }
 
 int __iswlower_l(wint_t c, locale_t l)