diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
commit | feb494d76a34e3ccf614ceccd68d6ce7b2f1cbd8 (patch) | |
tree | cfa1634e210020e9a0afea2b92c02c6afb77049f /gdb/sparc-nat.c | |
parent | 6d631e9666c66111eadeebf8a41348817e73a590 (diff) | |
download | gdb-feb494d76a34e3ccf614ceccd68d6ce7b2f1cbd8.tar.gz |
Protoization.gdb-post-protoization-2000-07-29
Diffstat (limited to 'gdb/sparc-nat.c')
-rw-r--r-- | gdb/sparc-nat.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gdb/sparc-nat.c b/gdb/sparc-nat.c index a9b661ff99d..c62054a4dde 100644 --- a/gdb/sparc-nat.c +++ b/gdb/sparc-nat.c @@ -50,8 +50,7 @@ static void fetch_core_registers (char *, unsigned int, int, CORE_ADDR); marking them as valid so we won't fetch them again. */ void -fetch_inferior_registers (regno) - int regno; +fetch_inferior_registers (int regno) { struct regs inferior_registers; struct fp_status inferior_fp_registers; @@ -144,8 +143,7 @@ fetch_inferior_registers (regno) Otherwise, REGNO specifies which register (so we can save time). */ void -store_inferior_registers (regno) - int regno; +store_inferior_registers (int regno) { struct regs inferior_registers; struct fp_status inferior_fp_registers; @@ -313,7 +311,7 @@ fetch_core_registers (core_reg_sect, core_reg_size, which, ignore) } int -kernel_u_size () +kernel_u_size (void) { return (sizeof (struct user)); } @@ -332,7 +330,7 @@ static struct core_fns sparc_core_fns = }; void -_initialize_core_sparc () +_initialize_core_sparc (void) { add_core_fns (&sparc_core_fns); } |