diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-11-02 03:18:49 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-11-02 03:18:49 +0000 |
commit | 3ed9691ff40f95cbb9913f07705a5d4ce10949c6 (patch) | |
tree | 272c785daf087463bd27fa54ef5019b6aadb4518 /gdb/ultra3-nat.c | |
parent | 0ab7df8a89f8e8e297d068d2dd97fd4cd245cc1a (diff) | |
download | gdb-3ed9691ff40f95cbb9913f07705a5d4ce10949c6.zip gdb-3ed9691ff40f95cbb9913f07705a5d4ce10949c6.tar.gz gdb-3ed9691ff40f95cbb9913f07705a5d4ce10949c6.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/ultra3-nat.c')
-rw-r--r-- | gdb/ultra3-nat.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/ultra3-nat.c b/gdb/ultra3-nat.c index 1ba60ad..02ff8ec 100644 --- a/gdb/ultra3-nat.c +++ b/gdb/ultra3-nat.c @@ -254,14 +254,13 @@ fetch_register (int regno) /* * Read AMD's Binary Compatibilty Standard conforming core file. * struct ptrace_user is the first thing in the core file + * + * CORE_REG_SECT, CORE_REG_SIZE, WHICH, and REG_ADDR are all ignored. */ static void -fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr) - char *core_reg_sect; /* Unused in this version */ - unsigned core_reg_size; /* Unused in this version */ - int which; /* Unused in this version */ - CORE_ADDR reg_addr; /* Unused in this version */ +fetch_core_registers (char *core_reg_sect, unsigned core_reg_size, + int which, CORE_ADDR reg_addr) { register int regno; int val; |