diff options
author | Keith Seitz <keiths@cygnus> | 1997-12-03 20:45:12 +0000 |
---|---|---|
committer | Keith Seitz <keiths@cygnus> | 1997-12-03 20:45:12 +0000 |
commit | e59ddd6e88cdba11231ee8b28067b84000d1b2bd (patch) | |
tree | 18d6fa7a771e53f8effeeabc1635f0d3eaf62bd5 /gdb | |
parent | c677110ca3e0383459baf38dd158607ca6d1ebb1 (diff) | |
download | gdb-e59ddd6e88cdba11231ee8b28067b84000d1b2bd.zip gdb-e59ddd6e88cdba11231ee8b28067b84000d1b2bd.tar.gz gdb-e59ddd6e88cdba11231ee8b28067b84000d1b2bd.tar.bz2 |
* tracepoint.c: add declaration for x_command
* printcmd.c (x_command): remove static declaration
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/tracepoint.c | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 8ac9c2b..cb6039b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +Wed Dec 3 12:44:15 1997 Keith Seitz <keiths@onions.cygnus.com> + + * tracepoint.c: add declaration for x_command + + * printcmd.c (x_command): remove static declaration + Wed Dec 3 12:00:42 1997 Michael Snyder (msnyder@cleaver.cygnus.com) * tracepoint.c (finish_tfind_command): call do_display so that diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index 4de163a..f098541 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -44,6 +44,7 @@ extern int info_verbose; extern void (*readline_begin_hook) PARAMS ((char *, ...)); extern char * (*readline_hook) PARAMS ((char *)); extern void (*readline_end_hook) PARAMS ((void)); +extern void x_command PARAMS ((char *, int)); /* If this definition isn't overridden by the header files, assume that isatty and fileno exist on this system. */ |