diff options
author | Tom Tromey <tromey@adacore.com> | 2022-03-28 09:46:55 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2022-03-30 09:08:48 -0600 |
commit | c50e54825bfea1ab6afbd984a4d2e78e9306e70f (patch) | |
tree | 661e2a6a793aeb0a6ede10a3c5543253cc96eb08 /gdbsupport/pathstuff.cc | |
parent | d537777dfe634f3109125156484e33d421b03f1b (diff) | |
download | binutils-c50e54825bfea1ab6afbd984a4d2e78e9306e70f.zip binutils-c50e54825bfea1ab6afbd984a4d2e78e9306e70f.tar.gz binutils-c50e54825bfea1ab6afbd984a4d2e78e9306e70f.tar.bz2 |
Consolidate definition of current_directory
I noticed that both gdbserver and gdb define current_directory.
However, as it is referenced by gdbsupport, it seemed better to define
it there as well. This patch also moves the declaration to
pathstuff.h. Tested by rebuilding.
Diffstat (limited to 'gdbsupport/pathstuff.cc')
-rw-r--r-- | gdbsupport/pathstuff.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdbsupport/pathstuff.cc b/gdbsupport/pathstuff.cc index cb2dd4f..a347123 100644 --- a/gdbsupport/pathstuff.cc +++ b/gdbsupport/pathstuff.cc @@ -29,6 +29,10 @@ /* See gdbsupport/pathstuff.h. */ +char *current_directory; + +/* See gdbsupport/pathstuff.h. */ + gdb::unique_xmalloc_ptr<char> gdb_realpath (const char *filename) { |