diff options
Diffstat (limited to 'gdb/i386mach-nat.c')
-rw-r--r-- | gdb/i386mach-nat.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gdb/i386mach-nat.c b/gdb/i386mach-nat.c index ded044b..966acb8 100644 --- a/gdb/i386mach-nat.c +++ b/gdb/i386mach-nat.c @@ -68,8 +68,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_state inferior_fp_registers; @@ -156,7 +155,7 @@ static struct core_fns i386mach_core_fns = }; void -_initialize_core_i386mach () +_initialize_core_i386mach (void) { add_core_fns (&i386mach_core_fns); } |