summaryrefslogtreecommitdiff
path: root/gas/input-file.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2001-10-11 07:17:47 +0000
committerNick Clifton <nickc@redhat.com>2001-10-11 07:17:47 +0000
commit517d4ea3efadd9d38b9191609fda567c8d3e4556 (patch)
tree913128ebd688e4fce34a9d8d2905686e350eb875 /gas/input-file.c
parent248ecfb807d54753898f26c67cda13e68159a339 (diff)
downloadbinutils-redhat-517d4ea3efadd9d38b9191609fda567c8d3e4556.tar.gz
Use ISSPACE instead of isspace
Diffstat (limited to 'gas/input-file.c')
-rw-r--r--gas/input-file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gas/input-file.c b/gas/input-file.c
index fcd710ffb7..798f327d0f 100644
--- a/gas/input-file.c
+++ b/gas/input-file.c
@@ -26,9 +26,9 @@
#include <stdio.h>
#include <string.h>
-
#include "as.h"
#include "input-file.h"
+#include "safe-ctype.h"
static int input_file_get PARAMS ((char *, int));
@@ -159,7 +159,7 @@ input_file_open (filename, pre)
if (c == 'N')
{
fgets (buf, 80, f_in);
- if (!strncmp (buf, "O_APP", 5) && isspace (buf[5]))
+ if (!strncmp (buf, "O_APP", 5) && ISSPACE (buf[5]))
preprocess = 0;
if (!strchr (buf, '\n'))
ungetc ('#', f_in); /* It was longer. */
@@ -169,7 +169,7 @@ input_file_open (filename, pre)
else if (c == 'A')
{
fgets (buf, 80, f_in);
- if (!strncmp (buf, "PP", 2) && isspace (buf[2]))
+ if (!strncmp (buf, "PP", 2) && ISSPACE (buf[2]))
preprocess = 1;
if (!strchr (buf, '\n'))
ungetc ('#', f_in);