summaryrefslogtreecommitdiff
path: root/disasm
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 /disasm
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 'disasm')
-rw-r--r--disasm/ndisasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/disasm/ndisasm.c b/disasm/ndisasm.c
index 4497c388..924eb568 100644
--- a/disasm/ndisasm.c
+++ b/disasm/ndisasm.c
@@ -40,7 +40,7 @@
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
-#include <ctype.h>
+#include "nctype.h"
#include <errno.h>
#include "insns.h"