X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fctype%2Fispunct.c;h=a491d5dc4b04d375fd0f2a3a495f2c147727a204;hb=b76f37fd5625d038141b52184956fb4b7838e9a5;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);