diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-04 07:32:04 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-04 07:32:04 +0000 |
commit | fd944c82b484fee0514fefed73ce1622127976cc (patch) | |
tree | 2ee77fc01b58627c217cdfa65bb2e8134086c70b /gcc/cpplib.h | |
parent | 3d75d43c65cad1c53dd9b0321ff7e166c00d1d32 (diff) | |
download | ppe42-gcc-fd944c82b484fee0514fefed73ce1622127976cc.tar.gz ppe42-gcc-fd944c82b484fee0514fefed73ce1622127976cc.zip |
* cppfiles.c (cpp_make_system_header): Take 2 booleans,
and operate on current buffer.
(cpp_read_file): Rename _cpp_read_file.
* cpplib.c (do_line, do_pragma_system_header): Update calls to
cpp_make_system_header.
* fix-header.c: Similarly.
* cpphash.h (_cpp_read_file): Move from...
* cpplib.h: ... here.
* cppinit.c (do_includes, cpp_start_read): Update appropriately.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@37989 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index faccc6a8bf3..524b8f6ed61 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -781,8 +781,7 @@ extern void cpp_stop_lookahead PARAMS ((cpp_reader *, int)); /* In cppfiles.c */ extern int cpp_included PARAMS ((cpp_reader *, const char *)); -extern int cpp_read_file PARAMS ((cpp_reader *, const char *)); -extern void cpp_make_system_header PARAMS ((cpp_reader *, cpp_buffer *, int)); +extern void cpp_make_system_header PARAMS ((cpp_reader *, int, int)); /* These are inline functions instead of macros so we can get type checking. */ |