use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit code
[oweals/musl.git] / src / ctype / isprint.c
1 int isprint(int c)
2 {
3         return (unsigned)c-0x20 < 0x5f;
4 }