diff options
Diffstat (limited to 'gdb/skip.h')
-rw-r--r-- | gdb/skip.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ /* Header for skipping over uninteresting files and functions when debugging. - Copyright (C) 2011-2024 Free Software Foundation, Inc. + Copyright (C) 2011-2025 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -15,8 +15,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 (SKIP_H) -#define SKIP_H +#ifndef GDB_SKIP_H +#define GDB_SKIP_H struct symtab_and_line; @@ -25,4 +25,4 @@ struct symtab_and_line; bool function_name_is_marked_for_skip (const char *function_name, const symtab_and_line &function_sal); -#endif /* !defined (SKIP_H) */ +#endif /* GDB_SKIP_H */ |