diff options
Diffstat (limited to 'gcc/cpplex.c')
-rw-r--r-- | gcc/cpplex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cpplex.c b/gcc/cpplex.c index 8717104..96e2454 100644 --- a/gcc/cpplex.c +++ b/gcc/cpplex.c @@ -1677,12 +1677,12 @@ cpp_output_line (pfile, fp) { cpp_token token; - _cpp_get_token (pfile, &token); + cpp_get_token (pfile, &token); token.flags &= ~PREV_WHITE; while (token.type != CPP_EOF) { cpp_output_token (&token, fp); - _cpp_get_token (pfile, &token); + cpp_get_token (pfile, &token); } putc ('\n', fp); |