diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-05-28 01:12:42 +0000 |
commit | bf6c959448e3470b740fc6f032faf4ee6c1ed43a (patch) | |
tree | 8aeacca23eb32d57e7ef9abce8d272f5b3adc53c /gdb/ppc-bdm.c | |
parent | b25fcc020b2d009c63e29b7655a7534507a50f88 (diff) | |
download | gdb-bf6c959448e3470b740fc6f032faf4ee6c1ed43a.tar.gz |
PARAMS removal.gdb-post-params-removal-2000-05-28
Diffstat (limited to 'gdb/ppc-bdm.c')
-rw-r--r-- | gdb/ppc-bdm.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/ppc-bdm.c b/gdb/ppc-bdm.c index d34ccbef116..e10ebace770 100644 --- a/gdb/ppc-bdm.c +++ b/gdb/ppc-bdm.c @@ -37,14 +37,13 @@ #include "serial.h" #include "ocd.h" -static void bdm_ppc_open PARAMS ((char *name, int from_tty)); +static void bdm_ppc_open (char *name, int from_tty); -static int bdm_ppc_wait PARAMS ((int pid, - struct target_waitstatus * target_status)); +static int bdm_ppc_wait (int pid, struct target_waitstatus *target_status); -static void bdm_ppc_fetch_registers PARAMS ((int regno)); +static void bdm_ppc_fetch_registers (int regno); -static void bdm_ppc_store_registers PARAMS ((int regno)); +static void bdm_ppc_store_registers (int regno); extern struct target_ops bdm_ppc_ops; /* Forward decl */ |