diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-10-27 01:25:10 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-10-27 01:25:10 +0000 |
commit | 0594ce6812669af20b550a1aad8b0a5a8c540382 (patch) | |
tree | c50694f41d945c1b52438dae164c5ca6cde062d2 /gdb/symm-nat.c | |
parent | fae14fd3e799a033db15d543b0f3c0f3ec62ad87 (diff) | |
download | gdb-0594ce6812669af20b550a1aad8b0a5a8c540382.tar.gz |
Protoization.
Diffstat (limited to 'gdb/symm-nat.c')
-rw-r--r-- | gdb/symm-nat.c | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/gdb/symm-nat.c b/gdb/symm-nat.c index 9a56a2aed89..7b798aee5ee 100644 --- a/gdb/symm-nat.c +++ b/gdb/symm-nat.c @@ -313,8 +313,7 @@ print_1167_control_word (unsigned int pcr) printf_unfiltered ("\n"); } -print_1167_regs (regs) - long regs[FPA_NREGS]; +print_1167_regs (long regs[FPA_NREGS]) { int i; @@ -737,7 +736,7 @@ detach (int signo) /* Copy LEN bytes to or from inferior's memory starting at MEMADDR to debugger memory starting at MYADDR. Copy to inferior if - WRITE is nonzero. + WRITE is nonzero. TARGET is ignored. Returns the length copied, which is either the LEN argument or zero. This xfer function does not do partial moves, since child_ops @@ -745,12 +744,8 @@ detach (int signo) anyway. */ int -child_xfer_memory (memaddr, myaddr, len, write, target) - CORE_ADDR memaddr; - char *myaddr; - int len; - int write; - struct target_ops *target; /* ignored */ +child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write, + struct target_ops *target) { register int i; /* Round starting address down to longword boundary. */ |