diff options
author | Pierre Muller <muller@sourceware.org> | 2011-12-16 19:55:26 +0000 |
---|---|---|
committer | Pierre Muller <muller@sourceware.org> | 2011-12-16 19:55:26 +0000 |
commit | a961bc186cb4a576cf70b101af7530f802a2117c (patch) | |
tree | 0db0dd0da53c1d10b549b11fa2ba76767aeff78e /gdb/windows-nat.c | |
parent | 966be4fd6a7df2729f853aa58f7fccceeec39b5c (diff) | |
download | gdb-a961bc186cb4a576cf70b101af7530f802a2117c.zip gdb-a961bc186cb4a576cf70b101af7530f802a2117c.tar.gz gdb-a961bc186cb4a576cf70b101af7530f802a2117c.tar.bz2 |
* windows-nat.c (cygwin_get_dr, cygwin_get_dr7): Add missing
prototypes.
Diffstat (limited to 'gdb/windows-nat.c')
-rw-r--r-- | gdb/windows-nat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdb/windows-nat.c b/gdb/windows-nat.c index 97ed237..a82dd9c 100644 --- a/gdb/windows-nat.c +++ b/gdb/windows-nat.c @@ -173,7 +173,9 @@ static void windows_kill_inferior (struct target_ops *); static void cygwin_set_dr (int i, CORE_ADDR addr); static void cygwin_set_dr7 (unsigned long val); +static CORE_ADDR cygwin_get_dr (int i); static unsigned long cygwin_get_dr6 (void); +static unsigned long cygwin_get_dr7 (void); static enum target_signal last_sig = TARGET_SIGNAL_0; /* Set if a signal was received from the debugged process. */ |