diff options
Diffstat (limited to 'gdb/sentinel-frame.h')
-rw-r--r-- | gdb/sentinel-frame.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/sentinel-frame.h b/gdb/sentinel-frame.h index 1a37ff1..61decb1 100644 --- a/gdb/sentinel-frame.h +++ b/gdb/sentinel-frame.h @@ -1,6 +1,6 @@ /* Code dealing with register stack frames, for GDB, the GNU debugger. - Copyright (C) 2003-2024 Free Software Foundation, Inc. + Copyright (C) 2003-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#if !defined (SENTINEL_FRAME_H) -#define SENTINEL_FRAME_H 1 +#ifndef GDB_SENTINEL_FRAME_H +#define GDB_SENTINEL_FRAME_H struct frame_unwind; struct regcache; @@ -34,6 +34,6 @@ extern void *sentinel_frame_cache (struct regcache *regcache); /* At present there is only one type of sentinel frame. */ -extern const struct frame_unwind sentinel_frame_unwind; +extern const struct frame_unwind_legacy sentinel_frame_unwind; -#endif /* !defined (SENTINEL_FRAME_H) */ +#endif /* GDB_SENTINEL_FRAME_H */ |