minix/lib/libc/ansi/ispunct.c

6 lines
65 B
C

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