diff options
author | Pedro Alves <palves@redhat.com> | 2010-05-27 22:06:00 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2010-05-27 22:06:00 +0000 |
commit | 176a69613a66850e64d44fd1a3c671c557ac9bcf (patch) | |
tree | fa690f5134800732f4e2b9832406d3fece952be2 /gdb/remote.c | |
parent | 88bfdde411c988853b8ec9f8699dcb614f7b079a (diff) | |
download | gdb-176a69613a66850e64d44fd1a3c671c557ac9bcf.zip gdb-176a69613a66850e64d44fd1a3c671c557ac9bcf.tar.gz gdb-176a69613a66850e64d44fd1a3c671c557ac9bcf.tar.bz2 |
* remote.c (unpack_varlen_hex): Remove forward declaration.
(remote_console_output): Make static, and add forward declaration.
* remote.h: Drop FIXME comment.
(unpack_varlen_hex): Declare.
(remote_console_output, remote_cisco_objfile_relocate)
(deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
Delete declarations.
* tracepoint.c: Include "remote.h".
(unpack_varlen_hex): Delete declaration.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r-- | gdb/remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/remote.c b/gdb/remote.c index 16e577b..ca3aad6 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -242,7 +242,7 @@ static void remote_terminal_ours (void); static int remote_read_description_p (struct target_ops *target); -char *unpack_varlen_hex (char *buff, ULONGEST *result); +static void remote_console_output (char *msg); /* The non-stop remote protocol provisions for one pending stop reply. This is where we keep it until it is acknowledged. */ @@ -4668,7 +4668,7 @@ remote_terminal_ours (void) remote_async_terminal_ours_p = 1; } -void +static void remote_console_output (char *msg) { char *p; |