fix pthread_create return value with PTHREAD_EXPLICIT_SCHED
[musl] / src / ctype / iswlower.c
index 438fe26..79df44a 100644 (file)
@@ -1,6 +1,14 @@
 #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)
+{
+       return iswlower(c);
+}
+
+weak_alias(__iswlower_l, iswlower_l);