fix wide printf forms ignoring width for %lc format specifier
[musl] / src / ctype / islower.c
index d72fb21..c3fa74c 100644 (file)
@@ -5,3 +5,10 @@ int islower(int c)
 {
        return (unsigned)c-'a' < 26;
 }
+
+int __islower_l(int c, locale_t l)
+{
+       return islower(c);
+}
+
+weak_alias(__islower_l, islower_l);