summaryrefslogtreecommitdiff
path: root/src/ctype/isprint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ctype/isprint.c')
-rw-r--r--src/ctype/isprint.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ctype/isprint.c b/src/ctype/isprint.c
index 58120351..19847118 100644
--- a/src/ctype/isprint.c
+++ b/src/ctype/isprint.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 printable **/
int isprint(int c)
@@ -15,7 +14,7 @@ int isprint(int c)
RETURN(0, ARGUMENT(c) is not a printable character);
*/
- return map[c] & ~SPACE || c == ' ';
+ return map[c] & ~CT_SPACE || c == ' ';
}
/***