math: move x86_64 exp2l implementation to exp2l.s from expl.s
[musl] / src / ctype / isalpha.c
1 #include <ctype.h>
2 #undef isalpha
3
4 int isalpha(int c)
5 {
6         return ((unsigned)c|32)-'a' < 26;
7 }