diff options
author | H.J. Lu <hjl@lucon.org> | 2001-09-19 05:33:36 +0000 |
---|---|---|
committer | H.J. Lu <hjl@lucon.org> | 2001-09-19 05:33:36 +0000 |
commit | dc4fac06417cb873e1228b8905012adc1df3de0a (patch) | |
tree | efdeafb4cb3738e257f19aa9ca9c8b9b7240b8f4 /bfd/oasys.c | |
parent | 23ba13ea39bc1761db6cd916609eb937139f4d3b (diff) | |
download | gdb-dc4fac06417cb873e1228b8905012adc1df3de0a.tar.gz |
Locale changes from Bruno Haible <haible@clisp.cons.org>.
Diffstat (limited to 'bfd/oasys.c')
-rw-r--r-- | bfd/oasys.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/oasys.c b/bfd/oasys.c index dcb2b7381ac..d8dc957c8e8 100644 --- a/bfd/oasys.c +++ b/bfd/oasys.c @@ -22,7 +22,7 @@ #define UNDERSCORE_HACK 1 #include "bfd.h" #include "sysdep.h" -#include <ctype.h> +#include "safe-ctype.h" #include "libbfd.h" #include "oasys.h" #include "liboasys.h" @@ -1030,7 +1030,7 @@ oasys_write_sections (abfd) for (s = abfd->sections; s != (asection *) NULL; s = s->next) { - if (!isdigit ((unsigned char) s->name[0])) + if (!ISDIGIT (s->name[0])) { (*_bfd_error_handler) (_("%s: can not represent section `%s' in oasys"), |