summaryrefslogtreecommitdiff
path: root/bfd/archures.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/archures.c
parent23ba13ea39bc1761db6cd916609eb937139f4d3b (diff)
downloadgdb-dc4fac06417cb873e1228b8905012adc1df3de0a.tar.gz
Locale changes from Bruno Haible <haible@clisp.cons.org>.
Diffstat (limited to 'bfd/archures.c')
-rw-r--r--bfd/archures.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/archures.c b/bfd/archures.c
index 1a7ecbf5e71..18925e3f574 100644
--- a/bfd/archures.c
+++ b/bfd/archures.c
@@ -23,7 +23,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
#include "bfd.h"
#include "sysdep.h"
#include "libbfd.h"
-#include <ctype.h>
+#include "safe-ctype.h"
/*
@@ -813,7 +813,7 @@ bfd_default_scan (info, string)
}
number = 0;
- while (isdigit ((unsigned char) *ptr_src))
+ while (ISDIGIT (*ptr_src))
{
number = number * 10 + *ptr_src - '0';
ptr_src++;