minix/lib/libc/ansi/isdigit.c

6 lines
65 B
C

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