minix/lib/ansi/isdigit.c
2005-04-21 14:53:53 +00:00

6 lines
65 B
C
Executable file

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