summaryrefslogtreecommitdiff
path: root/src/ctype/isgraph.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-28 14:16:05 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-28 14:16:05 -0500
commit69315080f1665373a1753c351fee1251af0545a4 (patch)
tree61c6592146afeade2ad57d9e930a341510b571ae /src/ctype/isgraph.c
parent80548c779ba2302b2a4256f15d6e5f66b5dcfb18 (diff)
clean up internal namespace
Diffstat (limited to 'src/ctype/isgraph.c')
-rw-r--r--src/ctype/isgraph.c3
1 files changed, 1 insertions, 2 deletions
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;
}
/***