From 660dfcb6a7e4dd8e05bb06c6a00d94c1b4a4fb9f Mon Sep 17 00:00:00 2001 From: Gitea Date: Thu, 24 Dec 2020 22:36:51 -0600 Subject: [PATCH] Woops. Fixed a stupid error --- ctype/ispunct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ctype/ispunct.c b/ctype/ispunct.c index 3417907..cf184c8 100644 --- a/ctype/ispunct.c +++ b/ctype/ispunct.c @@ -1,4 +1,4 @@ -#include +#include int ispunct(int c) { return (c < 128 && !(isalnum(c) || iscntrl(c)));