sync case mappings with unicode 6.1
[musl] / src / ctype / iswlower.c
index 0a568e7..438fe26 100644 (file)
@@ -2,5 +2,5 @@
 
 int iswlower(wint_t wc)
 {
-       return towupper(wc) != wc;
+       return towupper(wc) != wc || wc == 0xdf;
 }