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/tracepoint.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/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 54904fb..0fb779e 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -46,6 +46,7 @@ #include "gdbthread.h" #include "stack.h" #include "gdbcore.h" +#include "remote.h" #include "ax.h" #include "ax-gdb.h" @@ -3307,8 +3308,6 @@ tfile_interp_line (char *line, /* Parse the part of trace status syntax that is shared between the remote protocol and the trace file reader. */ -extern char *unpack_varlen_hex (char *buff, ULONGEST *result); - void parse_trace_status (char *line, struct trace_status *ts) { |