i386 vsyscall support (vdso-provided sysenter/syscall instruction based)
[oweals/musl.git] / src / ctype / isdigit.c
1 #include <ctype.h>
2 #undef isdigit
3
4 int isdigit(int c)
5 {
6         return (unsigned)c-'0' < 10;
7 }