apply hidden visibility to sigreturn code fragments
[musl.git] / src / ctype / toupper.c
blobbbf4e06e815c6e1bbd7bfce3f12e471d427d71ad
1 #include <ctype.h>
2 #include "libc.h"
4 int toupper(int c)
6 if (islower(c)) return c & 0x5f;
7 return c;
10 int __toupper_l(int c, locale_t l)
12 return toupper(c);
15 weak_alias(__toupper_l, toupper_l);