minix/lib/ansi/isdigit.c
2009-11-09 10:26:00 +00:00

6 lines
65 B
C

#include <ctype.h>
int (isdigit)(int c) {
return isdigit(c);
}