diff options
author | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-11-20 13:21:51 +0000 |
---|---|---|
committer | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-11-20 13:21:51 +0000 |
commit | 691f496e0cc21cb6935d3f178491fa45db784590 (patch) | |
tree | 14d855af61ee5d3eeaa2168c68128e666b3c7594 /gcc/tlink.c | |
parent | a2b1b44ef6dd26c14cfa4992350e829051ed6589 (diff) | |
download | gcc-691f496e0cc21cb6935d3f178491fa45db784590.tar.gz |
2008-11-20 Samuel Thibault <samuel.thibault@ens-lyon.org>
* tlink.c: Include "libiberty.h".
(initial_cwd): Change type into char *.
(tlink_init): Call getpwd instead of getcwd.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@142043 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tlink.c')
-rw-r--r-- | gcc/tlink.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/tlink.c b/gcc/tlink.c index 51f371715ff..50206472eba 100644 --- a/gcc/tlink.c +++ b/gcc/tlink.c @@ -30,6 +30,7 @@ along with GCC; see the file COPYING3. If not see #include "hashtab.h" #include "demangle.h" #include "collect2.h" +#include "libiberty.h" #define MAX_ITERATIONS 17 @@ -38,7 +39,7 @@ extern int prepends_underscore; static int tlink_verbose; -static char initial_cwd[MAXPATHLEN + 1]; +static char *initial_cwd; /* Hash table boilerplate for working with htab_t. We have hash tables for symbol names, file names, and demangled symbols. */ @@ -273,7 +274,7 @@ tlink_init (void) tlink_verbose = 3; } - getcwd (initial_cwd, sizeof (initial_cwd)); + initial_cwd = getpwd (); } static int |