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 | a14ed312fd86dd2c862847230931451da2e49942 (patch) | |
tree | e7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/ppc-bdm.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
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 d34ccbe..e10ebac 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 */ |