diff options
author | Nick Clifton <nickc@redhat.com> | 2001-10-13 09:38:04 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-10-13 09:38:04 +0000 |
commit | 37111cc7285ddcb9fbbc07ed43ecf344a3f4ee2f (patch) | |
tree | e602365ad5e8ff808885668cd003a7739fa91c5e /opcodes/m32r-ibld.c | |
parent | 03dd63aa03bb1962c1c8756a64f869dae2c7b146 (diff) | |
download | gdb-37111cc7285ddcb9fbbc07ed43ecf344a3f4ee2f.zip gdb-37111cc7285ddcb9fbbc07ed43ecf344a3f4ee2f.tar.gz gdb-37111cc7285ddcb9fbbc07ed43ecf344a3f4ee2f.tar.bz2 |
Use safe-ctype.h not ctype.h
Diffstat (limited to 'opcodes/m32r-ibld.c')
-rw-r--r-- | opcodes/m32r-ibld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/m32r-ibld.c b/opcodes/m32r-ibld.c index 6c32b23..4d083a1 100644 --- a/opcodes/m32r-ibld.c +++ b/opcodes/m32r-ibld.c @@ -25,7 +25,6 @@ along with this program; if not, write to the Free Software Foundation, Inc., Keep that in mind. */ #include "sysdep.h" -#include <ctype.h> #include <stdio.h> #include "ansidecl.h" #include "dis-asm.h" @@ -34,6 +33,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., #include "m32r-desc.h" #include "m32r-opc.h" #include "opintl.h" +#include "safe-ctype.h" #undef min #define min(a,b) ((a) < (b) ? (a) : (b)) |