diff options
Diffstat (limited to 'gdb/solib-darwin.h')
-rw-r--r-- | gdb/solib-darwin.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gdb/solib-darwin.h b/gdb/solib-darwin.h index d62d680..f5bcdd1 100644 --- a/gdb/solib-darwin.h +++ b/gdb/solib-darwin.h @@ -1,6 +1,6 @@ /* Handle shared libraries for GDB, the GNU Debugger. - Copyright (C) 2009-2024 Free Software Foundation, Inc. + Copyright (C) 2009-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -20,8 +20,10 @@ #ifndef GDB_SOLIB_DARWIN_H #define GDB_SOLIB_DARWIN_H -struct solib_ops; +#include "solib.h" -extern const solib_ops darwin_so_ops; +/* Return a new solib_ops for Darwin systems. */ + +extern solib_ops_up make_darwin_solib_ops (); #endif /* GDB_SOLIB_DARWIN_H */ |