X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fctype%2Fispunct.c;h=a491d5dc4b04d375fd0f2a3a495f2c147727a204;hb=e8aba58ab19a18f83d7f78e80d5e4f51e7e4e8a9;hp=fc455352b51480be0966252ace0431fe89ea525e;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/ctype/ispunct.c b/src/ctype/ispunct.c index fc455352..a491d5dc 100644 --- a/src/ctype/ispunct.c +++ b/src/ctype/ispunct.c @@ -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);