aboutsummaryrefslogtreecommitdiff
path: root/gdb/h8300-tdep.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2000-12-02 11:37:15 +0000
committerAndrew Cagney <cagney@redhat.com>2000-12-02 11:37:15 +0000
commit55d801603665d5b9b410578cd64f29469dc86e7e (patch)
tree13cedd36ecb99ac47653698cdd19567141e1bc8d /gdb/h8300-tdep.c
parentc6c98b3833d01c45200708006011e5cecd461fac (diff)
downloadfsf-binutils-gdb-55d801603665d5b9b410578cd64f29469dc86e7e.zip
fsf-binutils-gdb-55d801603665d5b9b410578cd64f29469dc86e7e.tar.gz
fsf-binutils-gdb-55d801603665d5b9b410578cd64f29469dc86e7e.tar.bz2
* ser-e7kpc.c (e7000pc_setstopbits): New function.
(e7000pc_ops): Add e7000pc_setstopbits. * remote-e7000.c (e7000_detach, e7000_resume, e7000_xfer_inferior_memory, e7000_files_info, e7000_files_info, e7000_insert_breakpoint, e7000_remove_breakpoint, e7000_kill): Update function signature to match target vector. * h8300-tdep.c (h8300_command, h8300h_command, h8300s_command): h8500-tdep.c (small_command, big_command, medium_command, compact_command): Update function signature to match add_cmd.
Diffstat (limited to 'gdb/h8300-tdep.c')
-rw-r--r--gdb/h8300-tdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/h8300-tdep.c b/gdb/h8300-tdep.c
index 31abf59..84e190b 100644
--- a/gdb/h8300-tdep.c
+++ b/gdb/h8300-tdep.c
@@ -738,7 +738,7 @@ set_register_names (void)
}
static void
-h8300_command (int args, int from_tty)
+h8300_command (char *args, int from_tty)
{
extern int h8300hmode;
h8300hmode = 0;
@@ -747,7 +747,7 @@ h8300_command (int args, int from_tty)
}
static void
-h8300h_command (int args, int from_tty)
+h8300h_command (char *args, int from_tty)
{
extern int h8300hmode;
h8300hmode = 1;
@@ -756,7 +756,7 @@ h8300h_command (int args, int from_tty)
}
static void
-h8300s_command (int args, int from_tty)
+h8300s_command (char *args, int from_tty)
{
extern int h8300smode;
extern int h8300hmode;