summaryrefslogtreecommitdiff
path: root/src/ctype/ispunct.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/ispunct.c')
-rw-r--r--src/ctype/ispunct.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ctype/ispunct.c b/src/ctype/ispunct.c
index 13df9d52..09e24372 100644
--- a/src/ctype/ispunct.c
+++ b/src/ctype/ispunct.c
@@ -14,6 +14,8 @@ int ispunct(int c)
return c == EOF ? 0 : map[c] & CT_PUNCT;
}
+__check_1(int, 0, ispunct, int)
+
/***
tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(punct)
in the current locale.