fix debugger tracking of shared libraries on mips with PIE main program
[musl] / src / ctype / ispunct.c
index fc45535..a491d5d 100644 (file)
@@ -4,3 +4,10 @@ int ispunct(int c)
 {
        return isgraph(c) && !isalnum(c);
 }
+
+int __ispunct_l(int c, locale_t l)
+{
+       return ispunct(c);
+}
+
+weak_alias(__ispunct_l, ispunct_l);