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 | fba45db2faf619e71856ee38ec63949c0ef6903e (patch) | |
tree | 107efc21d2b12f54d84b59e75251449e3d5fd096 /gdb/i386mach-nat.c | |
parent | 29e6d33b03a5e39540d17bc8235573b1dac13341 (diff) | |
download | gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.zip gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.gz gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.bz2 |
Protoization.
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); } |