diff options
author | Neil Booth <neilb@earthling.net> | 2000-11-28 21:34:30 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2000-11-28 21:34:30 +0000 |
commit | 8dc4676ddb34f9749798446b9ad69382ca1c52d0 (patch) | |
tree | b95d79c17bb443cf45f6a1d401cede6a20cc135b /gcc/cpplib.h | |
parent | c77e04ae3ae833109b0aab9ff62f1882879abefd (diff) | |
download | gcc-8dc4676ddb34f9749798446b9ad69382ca1c52d0.zip gcc-8dc4676ddb34f9749798446b9ad69382ca1c52d0.tar.gz gcc-8dc4676ddb34f9749798446b9ad69382ca1c52d0.tar.bz2 |
cppmacro.c (cpp_scan_buffer_nooutput): Take a boolean indicating whether to scan all buffers on the stack or just one.
* cppmacro.c (cpp_scan_buffer_nooutput): Take a boolean
indicating whether to scan all buffers on the stack or
just one.
* cppinit.c (do_includes): Update.
* cppmain.c (main): Update.
* cpplib.h: Update prototype.
From-SVN: r37829
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index 3732556..9f2961a 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -777,7 +777,7 @@ extern void cpp_forall_identifiers PARAMS ((cpp_reader *, void *)); /* In cppmacro.c */ -extern void cpp_scan_buffer_nooutput PARAMS ((cpp_reader *)); +extern void cpp_scan_buffer_nooutput PARAMS ((cpp_reader *, int)); extern void cpp_start_lookahead PARAMS ((cpp_reader *)); extern void cpp_stop_lookahead PARAMS ((cpp_reader *, int)); |