diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-12 21:31:51 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-12 21:31:51 +0000 |
commit | 9e36e267115861827fc981c749a903310b24b02b (patch) | |
tree | 590fd1847cab73a5ef4b75fd3561a468bf056eab /gcc/cpplib.h | |
parent | 667fe30ba9e2bb2c75a5e8692eed2aa788b690e0 (diff) | |
download | gcc-9e36e267115861827fc981c749a903310b24b02b.tar.gz |
* cppfiles.c (cpp_rename_file, cpp_push_include): New.
* cppinit.c (push_include): Move with changes to cppfiles.c.
(cpp_read_main_file): Mark named operators here...
(cpp_finish_options): ...not here. Update.
(_cpp_maybe_push_include_file): Update.
* cpplib.h (cpp_push_include, cpp_rename_file): New.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64266 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cpplib.h')
-rw-r--r-- | gcc/cpplib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cpplib.h b/gcc/cpplib.h index ebb27666070..06a219c99e9 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -719,6 +719,8 @@ extern unsigned char *cpp_quote_string PARAMS ((unsigned char *, extern int cpp_included PARAMS ((cpp_reader *, const char *)); extern void cpp_make_system_header PARAMS ((cpp_reader *, int, int)); extern void cpp_simplify_path PARAMS ((char *)); +extern bool cpp_push_include PARAMS ((cpp_reader *, const char *)); +extern void cpp_rename_file PARAMS ((cpp_reader *, const char *)); /* In cpppch.c */ struct save_macro_data; |