update case mappings to unicode 12.1.0
[musl] / src / ctype / tolower.c
index b56f3c5..f10132e 100644 (file)
@@ -5,3 +5,10 @@ int tolower(int c)
        if (isupper(c)) return c | 32;
        return c;
 }
+
+int __tolower_l(int c, locale_t l)
+{
+       return tolower(c);
+}
+
+weak_alias(__tolower_l, tolower_l);