diff options
author | Tom Tromey <tom@tromey.com> | 2021-12-21 16:38:32 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-01-18 10:14:42 -0700 |
commit | bf31fd38f02ca9b1a7d75e2d00ee0af665fd3efd (patch) | |
tree | 58e96e35f1c5da782d5b975dd4ec565873a45e55 /gdb/macrotab.c | |
parent | 7904e9613e0a2fc38e9abc06a916dea6a009c7b4 (diff) | |
download | gdb-bf31fd38f02ca9b1a7d75e2d00ee0af665fd3efd.zip gdb-bf31fd38f02ca9b1a7d75e2d00ee0af665fd3efd.tar.gz gdb-bf31fd38f02ca9b1a7d75e2d00ee0af665fd3efd.tar.bz2 |
Move gdb obstack code to gdbsupport
This moves the gdb-specific obstack code -- both extensions like
obconcat and obstack_strdup, and things like auto_obstack -- to
gdbsupport.
Diffstat (limited to 'gdb/macrotab.c')
-rw-r--r-- | gdb/macrotab.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/macrotab.c b/gdb/macrotab.c index 479d08f..92d68e7 100644 --- a/gdb/macrotab.c +++ b/gdb/macrotab.c @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "defs.h" -#include "gdb_obstack.h" +#include "gdbsupport/gdb_obstack.h" #include "splay-tree.h" #include "filenames.h" #include "symtab.h" |