X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fctype%2Ftolower.c;h=f10132ec2be2d699170569c23e258c64a3384b9a;hb=639bcf251e549f634da9a3e7ef8528eb2ec12505;hp=b56f3c5094a2441649fddb796e590708bdc2a20b;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/ctype/tolower.c b/src/ctype/tolower.c index b56f3c50..f10132ec 100644 --- a/src/ctype/tolower.c +++ b/src/ctype/tolower.c @@ -5,3 +5,10 @@ int tolower(int c) if (isupper(c)) return c | 32; return c; } + +int __tolower_l(int c, locale_t l) +{ + return tolower(c); +} + +weak_alias(__tolower_l, tolower_l);