fix unintended observability of SIGABRT disposition reset via sigaction
[musl.git] / src / ctype / tolower.c
blobf10132ec2be2d699170569c23e258c64a3384b9a
1 #include <ctype.h>
3 int tolower(int c)
5 if (isupper(c)) return c | 32;
6 return c;
9 int __tolower_l(int c, locale_t l)
11 return tolower(c);
14 weak_alias(__tolower_l, tolower_l);