aarch64: add HWCAP_ flags from linux v4.17
[musl] / src / ctype / iswlower.c
index c754fb9..79df44a 100644 (file)
@@ -3,7 +3,7 @@
 
 int iswlower(wint_t wc)
 {
-       return towupper(wc) != wc || wc == 0xdf;
+       return towupper(wc) != wc;
 }
 
 int __iswlower_l(wint_t c, locale_t l)