fix the type of CLOCKS_PER_SEC to match new clock_t type
[musl] / src / ctype / isupper.c
1 #include <ctype.h>
2 #undef isupper
3
4 int isupper(int c)
5 {
6         return (unsigned)c-'A' < 26;
7 }