X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;ds=sidebyside;f=src%2Fctype%2Fislower.c;h=02640213e5f65bb50fb0eff0a067baca9b814794;hb=c093e2e8201524db0d638920e76bcb6b1d925f3a;hp=d72fb212f24599cb37efd99915ce091abb838787;hpb=0b44a0315b47dd8eced9f3b7f31580cf14bbfc01;p=musl diff --git a/src/ctype/islower.c b/src/ctype/islower.c index d72fb212..02640213 100644 --- a/src/ctype/islower.c +++ b/src/ctype/islower.c @@ -1,7 +1,15 @@ #include +#include "libc.h" #undef islower int islower(int c) { return (unsigned)c-'a' < 26; } + +int __islower_l(int c, locale_t l) +{ + return islower(c); +} + +weak_alias(__islower_l, islower_l);