* config/tc-ppc.c (PPC_HA, PPC_HIGHERA, PPC_HIGHESTA): Simplify.
[deliverable/binutils-gdb.git] / gas / input-file.c
index fcd710ffb73268a5c98bff541dde4866213db992..798f327d0f573c9f64daf67a218443ee92825c53 100644 (file)
@@ -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);
This page took 0.023373 seconds and 4 git commands to generate.