diff options
Diffstat (limited to 'userland/libc/ctype/ispunct.c')
-rw-r--r-- | userland/libc/ctype/ispunct.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/ctype/ispunct.c b/userland/libc/ctype/ispunct.c index 18dc7d8..abef66d 100644 --- a/userland/libc/ctype/ispunct.c +++ b/userland/libc/ctype/ispunct.c @@ -2,5 +2,5 @@ // https://pubs.opengroup.org/onlinepubs/9699919799/functions/ispunct.html int ispunct(int c) { - return (c == '.'); + return (c == '.'); } |