aboutsummaryrefslogtreecommitdiff
path: root/gcc/cpplib.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/cpplib.c')
-rw-r--r--gcc/cpplib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplib.c b/gcc/cpplib.c
index e16585f..18b44be 100644
--- a/gcc/cpplib.c
+++ b/gcc/cpplib.c
@@ -188,10 +188,10 @@ skip_rest_of_line (pfile)
/* Sweep up all tokens remaining on the line. We need to read
tokens from lookahead, but cannot just drop the lookahead buffers
because they may be saving tokens prior to this directive for an
- external client. So we use cpp_get_token, with macros disabled. */
+ external client. So we use _cpp_get_token, with macros disabled. */
pfile->state.prevent_expansion++;
while (!pfile->state.skip_newlines)
- _cpp_lex_token (pfile, &token);
+ _cpp_get_token (pfile, &token);
pfile->state.prevent_expansion--;
}