diff options
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index e823232..b50acd8 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -394,7 +394,7 @@ parse_assertion (pfile) cpp_reader *pfile; { struct operation op; - HASHNODE *hp; + cpp_hashnode *hp; struct predicate *pred; cpp_toklist query; enum cpp_ttype type; @@ -414,7 +414,7 @@ parse_assertion (pfile) tok = pfile->token_buffer + old_written; len = CPP_WRITTEN (pfile) - old_written; - hp = _cpp_lookup (pfile, tok, len); + hp = cpp_lookup (pfile, tok, len); /* Look ahead for an open paren. */ _cpp_skip_hspace (pfile); |