diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1998-05-06 12:56:58 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1998-05-06 12:56:58 +0000 |
commit | e9a780ecec4639ab0e2975a53c08e4dcfd7fafc2 (patch) | |
tree | 4be0ba56ed3d601b4b5711c8247791d8c7acf4b1 /gcc/fix-header.c | |
parent | d4c3e60e96683c90bd06f62da8157f84c9a3225c (diff) | |
download | gcc-e9a780ecec4639ab0e2975a53c08e4dcfd7fafc2.zip gcc-e9a780ecec4639ab0e2975a53c08e4dcfd7fafc2.tar.gz gcc-e9a780ecec4639ab0e2975a53c08e4dcfd7fafc2.tar.bz2 |
c-common.c: Convert to using ctype macros defined in system.h.
* c-common.c: Convert to using ctype macros defined in system.h.
* c-lex.c: Likewise.
* cccp.c: Likewise.
* collect2.c: Likewise.
* rs6000.c: Likewise.
* cpplib.c: Likewise.
* fix-header.c: Likewise.
* gcc.c: Likewise.
* gen-protos.c: Likewise.
* pexecute.c: Likewise.
* protoize.c: Likewise.
* rtl.c: Likewise.
* scan.c: Likewise.
* stmt.c: Likewise.
* tlink.c: Likewise.
* toplev.c: Likewise.
From-SVN: r19579
Diffstat (limited to 'gcc/fix-header.c')
-rw-r--r-- | gcc/fix-header.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/fix-header.c b/gcc/fix-header.c index cb3238d..3456e53 100644 --- a/gcc/fix-header.c +++ b/gcc/fix-header.c @@ -956,13 +956,13 @@ inf_scan_ident (s, c) int c; { s->ptr = s->base; - if (isalpha (c) || c == '_') + if (ISALPHA (c) || c == '_') { for (;;) { SSTRING_PUT (s, c); c = INF_GET (); - if (c == EOF || !(isalnum (c) || c == '_')) + if (c == EOF || !(ISALNUM (c) || c == '_')) break; } } @@ -1273,7 +1273,7 @@ main (argc, argv) c = INF_GET (); if (c == EOF) break; - if (isalpha (c) || c == '_') + if (ISALPHA (c) || c == '_') { c = inf_scan_ident (&buf, c); (void) INF_UNGET (c); |