diff options
author | Roland McGrath <mcgrathr@google.com> | 2022-03-21 12:04:48 -0700 |
---|---|---|
committer | Roland McGrath <mcgrathr@google.com> | 2022-03-21 12:04:48 -0700 |
commit | fcb335b0a23f7c2871a04ac181c258f3c1a915f3 (patch) | |
tree | aa2f355b0cc8884787db23048d15f7ade87f503a /gdb/solib.h | |
parent | b91f93a02c9c32e55073c0f18b330a6a9c5cfa34 (diff) | |
download | gdb-fcb335b0a23f7c2871a04ac181c258f3c1a915f3.zip gdb-fcb335b0a23f7c2871a04ac181c258f3c1a915f3.tar.gz gdb-fcb335b0a23f7c2871a04ac181c258f3c1a915f3.tar.bz2 |
gdb: Add missing #include in solib.h
The gdb_bfd_ref_ptr type is used in solib.h declarations.
Diffstat (limited to 'gdb/solib.h')
-rw-r--r-- | gdb/solib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/solib.h b/gdb/solib.h index cd6c8a8..f9b4d35 100644 --- a/gdb/solib.h +++ b/gdb/solib.h @@ -1,5 +1,5 @@ /* Shared library declarations for GDB, the GNU Debugger. - + Copyright (C) 1992-2022 Free Software Foundation, Inc. This file is part of GDB. @@ -26,6 +26,7 @@ struct target_ops; struct target_so_ops; struct program_space; +#include "gdb_bfd.h" #include "symfile-add-flags.h" /* Called when we free all symtabs, to free the shared library information |