fix float_t and double_t defs on x86 when -mfpmath=sse -msse2 is used
[musl] / src / ctype / isgraph.c
1 int isgraph(int c)
2 {
3         return (unsigned)c-0x21 < 0x5e;
4 }