#include "features.h" // for __weak #include // for isalnum, isgraph, ispunct, ispunct_l #include // for __unused #include // for locale_t int ispunct(int c) { return isgraph(c) && !isalnum(c); } __weak int ispunct_l(int c, locale_t __unused locale) { return ispunct(c); }