summaryrefslogtreecommitdiff
path: root/bfd/ihex.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2001-09-19 05:33:36 +0000
committerH.J. Lu <hjl@lucon.org>2001-09-19 05:33:36 +0000
commitdc4fac06417cb873e1228b8905012adc1df3de0a (patch)
treeefdeafb4cb3738e257f19aa9ca9c8b9b7240b8f4 /bfd/ihex.c
parent23ba13ea39bc1761db6cd916609eb937139f4d3b (diff)
downloadgdb-dc4fac06417cb873e1228b8905012adc1df3de0a.tar.gz
Locale changes from Bruno Haible <haible@clisp.cons.org>.
Diffstat (limited to 'bfd/ihex.c')
-rw-r--r--bfd/ihex.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/bfd/ihex.c b/bfd/ihex.c
index 83808ee8969..fbfe63c9209 100644
--- a/bfd/ihex.c
+++ b/bfd/ihex.c
@@ -123,8 +123,7 @@ The MRI compiler uses this, which is a repeat of type 5:
#include "sysdep.h"
#include "libbfd.h"
#include "libiberty.h"
-
-#include <ctype.h>
+#include "safe-ctype.h"
static void ihex_init PARAMS ((void));
static boolean ihex_mkobject PARAMS ((bfd *));
@@ -249,7 +248,7 @@ ihex_bad_byte (abfd, lineno, c, error)
{
char buf[10];
- if (! isprint (c))
+ if (! ISPRINT (c))
sprintf (buf, "\\%03o", (unsigned int) c);
else
{