diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-02 17:44:18 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-02 17:44:18 +0000 |
commit | 03e3f0fdd00589afdab16f67722a025bab99bdca (patch) | |
tree | 59efbdcac9849427f9743e4c35cc2278aecb7295 /gcc/cpplib.h | |
parent | 8cef25e737d97238751152631de70237a2aabaa4 (diff) | |
download | ppe42-gcc-03e3f0fdd00589afdab16f67722a025bab99bdca.tar.gz ppe42-gcc-03e3f0fdd00589afdab16f67722a025bab99bdca.zip |
* c-incpath.c (remove_component_p, simplify_path): Move back to
cppfiles.c.
(remove_duplicates): Use cpp_simplify_path.
* c-incpath.h (simplify_path): Remove.
* c-lex.c: Don't include c-incpath.h.
(init_c_lex): Remove simplify_path.
* cppfiles.c (remove_component_p, cpp_simplify_path): Restore.
(find_or_create_entry, validate_pch): Revert.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63669 138bc75d-0d04-0410-961f-82ee72b054a4
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 384dd209ac2..2ed5ed03d70 100644 --- a/gcc/cpplib.h +++ b/gcc/cpplib.h @@ -402,7 +402,6 @@ struct cpp_callbacks void (*undef) PARAMS ((cpp_reader *, unsigned int, cpp_hashnode *)); void (*ident) PARAMS ((cpp_reader *, unsigned int, const cpp_string *)); void (*def_pragma) PARAMS ((cpp_reader *, unsigned int)); - void (*simplify_path) PARAMS ((char *)); /* Called when the client has a chance to properly register built-ins with cpp_define() and cpp_assert(). */ void (*register_builtins) PARAMS ((cpp_reader *)); @@ -741,6 +740,7 @@ extern unsigned char *cpp_quote_string PARAMS ((unsigned char *, /* In cppfiles.c */ 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 *)); /* In cpppch.c */ struct save_macro_data; |