diff options
Diffstat (limited to 'src/ctype/isprint.c')
| -rw-r--r-- | src/ctype/isprint.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ctype/isprint.c b/src/ctype/isprint.c index 297bdc31..e1452365 100644 --- a/src/ctype/isprint.c +++ b/src/ctype/isprint.c @@ -14,6 +14,8 @@ int isprint(int c) return c == EOF ? 0 : map[c] & CT_PRINT; } +__check_1(int, 0, isprint, int) + /*** tests whether ARGUMENT(c) is a character in the class CHARACTER_CLASS(print) in the current locale. |
