diff options
Diffstat (limited to 'gdb/windows-nat.h')
-rw-r--r-- | gdb/windows-nat.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/gdb/windows-nat.h b/gdb/windows-nat.h index 5422aa0..ef86f3b 100644 --- a/gdb/windows-nat.h +++ b/gdb/windows-nat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2008-2024 Free Software Foundation, Inc. +/* Copyright (C) 2008-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -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/>. */ -#ifndef WINDOWS_NAT_H -#define WINDOWS_NAT_H +#ifndef GDB_WINDOWS_NAT_H +#define GDB_WINDOWS_NAT_H /* A pointer to a function that should return non-zero iff REGNUM corresponds to one of the segment registers. */ @@ -25,16 +25,15 @@ typedef int (segment_register_p_ftype) (int regnum); /* segment_register_p_ftype implementation for x86. */ int i386_windows_segment_register_p (int regnum); -/* context register offests for x86. */ +/* context register offsets for x86. */ extern const int i386_mappings[]; #ifdef __x86_64__ /* segment_register_p_ftype implementation for amd64. */ int amd64_windows_segment_register_p (int regnum); -/* context register offests for amd64. */ +/* context register offsets for amd64. */ extern const int amd64_mappings[]; #endif -#endif - +#endif /* GDB_WINDOWS_NAT_H */ |