diff options
Diffstat (limited to 'gas/config/tc-fr30.c')
-rw-r--r-- | gas/config/tc-fr30.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gas/config/tc-fr30.c b/gas/config/tc-fr30.c index 98f5729..26768fe 100644 --- a/gas/config/tc-fr30.c +++ b/gas/config/tc-fr30.c @@ -19,8 +19,8 @@ Boston, MA 02111-1307, USA. */ #include <stdio.h> -#include <ctype.h> #include "as.h" +#include "safe-ctype.h" #include "subsegs.h" #include "symcat.h" #include "opcodes/fr30-desc.h" @@ -614,7 +614,7 @@ fr30_is_colon_insn (start) continue; while (len --) - if (tolower (start [len]) != insn [len]) + if (TOLOWER (start [len]) != insn [len]) break; if (len == -1) |