diff options
Diffstat (limited to 'gas/config/tc-i960.c')
-rw-r--r-- | gas/config/tc-i960.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/config/tc-i960.c b/gas/config/tc-i960.c index 66ec025..279c214 100644 --- a/gas/config/tc-i960.c +++ b/gas/config/tc-i960.c @@ -64,10 +64,10 @@ a relocation directive. */ #include <stdio.h> -#include <ctype.h> #include "as.h" +#include "safe-ctype.h" #include "obstack.h" #include "opcode/i960.h" @@ -1389,8 +1389,8 @@ get_args (p, args) { if (*p == ' ' - && (! isalnum ((unsigned char) p[1]) - || ! isalnum ((unsigned char) p[-1]))) + && (! ISALNUM (p[1]) + || ! ISALNUM (p[-1]))) { p++; |