diff options
author | Mark Kettenis <kettenis@gnu.org> | 2006-07-17 22:15:55 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2006-07-17 22:15:55 +0000 |
commit | 675dcf4fc0920886678614772c08533976d6efe3 (patch) | |
tree | 63faf26928abd76385d2d7baf4569d377db0e691 /gdb/tracepoint.c | |
parent | 267a692b80e0cbaaabd7419827b74f6ccd1d7787 (diff) | |
download | gdb-675dcf4fc0920886678614772c08533976d6efe3.zip gdb-675dcf4fc0920886678614772c08533976d6efe3.tar.gz gdb-675dcf4fc0920886678614772c08533976d6efe3.tar.bz2 |
* printcmd.c: Coding style fixes: add missing spaces in comments
and wrapping long lines.
(delete_display, enable_display_command, disable_display_command)
(printf_command, display_info, undisplay_command, free_display)
(display_command, x_command, address_info, set_command)
(inspect_command, call_command, print_command, print_command_1)
(validate_format, print_formatted, decode_format, sym_format):
Remove prototypes.
(x_command): Make static.
(printf_command): Convert error into internal consistency check.
(address_info): Avoid assignment within function call.
(printf_command): Avoid redundant cast.
* tracepoint.c (x_command): Remove extern prototype.
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 8484daf..b35c8c2 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -1,7 +1,7 @@ /* Tracing functionality for remote targets in custom GDB protocol - Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free - Software Foundation, Inc. + Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, + 2006 Free Software Foundation, Inc. This file is part of GDB. @@ -68,7 +68,6 @@ extern void (*deprecated_readline_begin_hook) (char *, ...); extern char *(*deprecated_readline_hook) (char *); extern void (*deprecated_readline_end_hook) (void); -extern void x_command (char *, int); extern int addressprint; /* Print machine addresses? */ /* GDB commands implemented in other modules: |