diff options
author | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-18 07:17:14 +0000 |
---|---|---|
committer | neil <neil@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-18 07:17:14 +0000 |
commit | 95ed4b40598a49c202cce796203df8712c2409b8 (patch) | |
tree | 2f258633a9eba58b409257fdeb4243368e3d4b7e /gcc/cppinit.c | |
parent | 0e62d327ed45524b931405b768ebea61b562bb07 (diff) | |
download | ppe42-gcc-95ed4b40598a49c202cce796203df8712c2409b8.tar.gz ppe42-gcc-95ed4b40598a49c202cce796203df8712c2409b8.zip |
* cppinit.c (init_standard_includes): Reverse accidentally
included hunk from prefix.c patch.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45001 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppinit.c')
-rw-r--r-- | gcc/cppinit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 4a78a938987..0b47abea185 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -861,7 +861,7 @@ init_standard_includes (pfile) || (CPP_OPTION (pfile, cplusplus) && !CPP_OPTION (pfile, no_standard_cplusplus_includes))) { - char *str = update_path (p->fname, p->component); + char *str = xstrdup (update_path (p->fname, p->component)); append_include_chain (pfile, str, SYSTEM, p->cxx_aware); } } |