minix/lib/libc/ansi/isdigit.c

5 lines
65 B
C

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