summaryrefslogtreecommitdiff
path: root/nasmlib
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2018-12-27 12:37:25 -0800
committerH. Peter Anvin <hpa@zytor.com>2018-12-27 12:37:25 -0800
commitc2f3f2601593823c1844a5b35b98ccb445ddde66 (patch)
treea99e8f9fe53e3f2770d856a6bec6e380011c2809 /nasmlib
parentbd2803964e776b7e3cfa8292ed513aba32b1724c (diff)
downloadnasm-c2f3f2601593823c1844a5b35b98ccb445ddde66.tar.gz
Replace <ctype.h> includes with "nctype.h"
For almost everything we should use "nctype.h". Right now we don't have a nasm_toupper() to use <ctype.h> for things that need toupper(). Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'nasmlib')
-rw-r--r--nasmlib/readnum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nasmlib/readnum.c b/nasmlib/readnum.c
index 3ed6b3f2..b491bc73 100644
--- a/nasmlib/readnum.c
+++ b/nasmlib/readnum.c
@@ -37,7 +37,7 @@
#include "compiler.h"
-#include <ctype.h>
+#include "nctype.h"
#include "nasmlib.h"
#include "error.h"