fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / ctype / iswgraph.c
index fdc9785..ecdf466 100644 (file)
@@ -5,3 +5,10 @@ int iswgraph(wint_t wc)
        /* ISO C defines this function as: */
        return !iswspace(wc) && iswprint(wc);
 }
+
+int __iswgraph_l(wint_t c, locale_t l)
+{
+       return iswgraph(c);
+}
+
+weak_alias(__iswgraph_l, iswgraph_l);