From 69315080f1665373a1753c351fee1251af0545a4 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 28 Feb 2019 14:16:05 -0500 Subject: clean up internal namespace --- src/ctype/isgraph.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/ctype/isgraph.c') diff --git a/src/ctype/isgraph.c b/src/ctype/isgraph.c index 8ad3be0b..206a09b7 100644 --- a/src/ctype/isgraph.c +++ b/src/ctype/isgraph.c @@ -2,7 +2,6 @@ #include "limits.h" #include "nonstd/assert.h" #include "nonstd/ctype.h" -#include "nonstd/internal.h" /** test whether a character is graphic **/ int isgraph(int c) @@ -15,7 +14,7 @@ int isgraph(int c) RETURN(0, ARGUMENT(c) is not a graphic character); */ - return map[c] & ~SPACE; + return map[c] & ~CT_SPACE; } /*** -- cgit v1.2.1