diff options
author | Neil Booth <neil@gcc.gnu.org> | 2001-08-18 07:17:14 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2001-08-18 07:17:14 +0000 |
commit | fc0b1d1a48d570bb0609065d30cf5b9dad572438 (patch) | |
tree | 2f258633a9eba58b409257fdeb4243368e3d4b7e /gcc/cppinit.c | |
parent | 5dc4ff73e6a3e5328c2ff1e01f11983a3c3407cb (diff) | |
download | gcc-fc0b1d1a48d570bb0609065d30cf5b9dad572438.tar.gz |
cppinit.c (init_standard_includes): Reverse accidentally included hunk from prefix.c patch.
* cppinit.c (init_standard_includes): Reverse accidentally
included hunk from prefix.c patch.
From-SVN: r45001
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); } } |