sim: ppc: unify env settings too
[binutils-gdb.git] / gdb / bfd-target.h
index 5f0ef526641c20fba60c5b2ba2819584643e75f9..3d37b5fca9f9096bcdbc7ed7f1798f516ddd05d3 100644 (file)
@@ -1,6 +1,6 @@
 /* Very simple "bfd" target, for GDB, the GNU debugger.
 
-   Copyright (C) 2003, 2007 Free Software Foundation, Inc.
+   Copyright (C) 2003-2021 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
 #ifndef BFD_TARGET_H
 #define BFD_TARGET_H
 
-struct bfd;
-struct target_ops;
-
-/* Given an existing BFD, re-open it as a "struct target_ops".  On
-   close, it will also close the corresponding BFD (which is like
-   freopen and fdopen).  */
-struct target_ops *target_bfd_reopen (struct bfd *bfd);
+#include "gdb_bfd.h"
 
-/* Map over ABFD's sections, creating corresponding entries in the
-   target's section table.  */
+struct target_ops;
 
-void build_target_sections_from_bfd (struct target_ops *targ,
-                                    struct bfd *abfd);
+/* Given an existing BFD, re-open it as a "struct target_ops".  */
+struct target_ops *target_bfd_reopen (const gdb_bfd_ref_ptr &bfd);
 
 #endif