X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fctype%2Fisupper.c;h=bfd15acdbe5291551a557d1a94980ae99e6e1024;hb=e97681d6f2c44bf5fa9ecdd30607cb63c780062e;hp=f09d88c57c34a7ae22d57d761463ad506298002d;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/ctype/isupper.c b/src/ctype/isupper.c index f09d88c5..bfd15acd 100644 --- a/src/ctype/isupper.c +++ b/src/ctype/isupper.c @@ -5,3 +5,10 @@ int isupper(int c) { return (unsigned)c-'A' < 26; } + +int __isupper_l(int c, locale_t l) +{ + return isupper(c); +} + +weak_alias(__isupper_l, isupper_l);