fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / ctype / wctrans.c
index 739869d..d3eda52 100644 (file)
@@ -14,3 +14,16 @@ wint_t towctrans(wint_t wc, wctrans_t trans)
        if (trans == (wctrans_t)2) return towlower(wc);
        return wc;
 }
+
+wctrans_t __wctrans_l(const char *s, locale_t l)
+{
+       return wctrans(s);
+}
+
+wint_t __towctrans_l(wint_t c, wctrans_t t, locale_t l)
+{
+       return towctrans(c, t);
+}
+
+weak_alias(__wctrans_l, wctrans_l);
+weak_alias(__towctrans_l, towctrans_l);