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

6 lines
65 B
C
Executable file

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