syslog: revert LOG_FAC/LOG_FACMASK changes
[musl.git] / src / ctype / toupper.c
blob4e74a55c60a622dce6330c20b4217a3b5c0385d5
1 #include <ctype.h>
3 int toupper(int c)
5 if (islower(c)) return c & 0x5f;
6 return c;
9 int __toupper_l(int c, locale_t l)
11 return toupper(c);
14 weak_alias(__toupper_l, toupper_l);