blob: 484c73e3274f2336e827745a0789a9b8c1d107bc [file] [log] [blame]
#include <ctype.h>
#undef isdigit
int isdigit(int c) {
return (unsigned)c - '0' < 10;
}