diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-09-28 13:47:45 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-09-28 21:18:12 -0400 |
commit | c1cd9664073acfdc5096617cddcfd562dd2b1642 (patch) | |
tree | 7acf72094432efe05832b27fd864bd65ec8535ea /gdb/solib-dsbt.c | |
parent | 2e75eb583e23ff7ae6a8038014314c43b31595ff (diff) | |
download | fsf-binutils-gdb-c1cd9664073acfdc5096617cddcfd562dd2b1642.zip fsf-binutils-gdb-c1cd9664073acfdc5096617cddcfd562dd2b1642.tar.gz fsf-binutils-gdb-c1cd9664073acfdc5096617cddcfd562dd2b1642.tar.bz2 |
gdb: remove unused imports in solib*.[ch]
I'm starting to work on these files, I thought it would be a good time
to remove unused imports. These were identified by
include-what-you-use. Tested by rebuilding.
Change-Id: I3eaf3fa0ea3506c7ecfbc8ecff5031433b1dadb8
Reviewed-By: John Baldwin <jhb@FreeBSD.org>
Diffstat (limited to 'gdb/solib-dsbt.c')
-rw-r--r-- | gdb/solib-dsbt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/solib-dsbt.c b/gdb/solib-dsbt.c index b18c4a3..e0aa7f1 100644 --- a/gdb/solib-dsbt.c +++ b/gdb/solib-dsbt.c @@ -24,12 +24,11 @@ #include "solist.h" #include "objfiles.h" #include "symtab.h" -#include "language.h" #include "command.h" -#include "gdbcmd.h" -#include "elf-bfd.h" #include "gdb_bfd.h" #include "solib-dsbt.h" +#include "elf/common.h" +#include "cli/cli-cmds.h" #define GOT_MODULE_OFFSET 4 |