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/remote-e7000.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/remote-e7000.c')
-rw-r--r-- | gdb/remote-e7000.c | 28 |
1 files changed, 13 insertions, 15 deletions
diff --git a/gdb/remote-e7000.c b/gdb/remote-e7000.c index 608f116..6de0315 100644 --- a/gdb/remote-e7000.c +++ b/gdb/remote-e7000.c @@ -61,37 +61,35 @@ #define ACK 0x06 #define CTRLZ 0x1a -extern void notice_quit PARAMS ((void)); +extern void notice_quit (void); -extern void report_transfer_performance PARAMS ((unsigned long, - time_t, time_t)); +extern void report_transfer_performance (unsigned long, time_t, time_t); extern char *sh_processor_type; /* Local function declarations. */ -static void e7000_close PARAMS ((int)); +static void e7000_close (int); -static void e7000_fetch_register PARAMS ((int)); +static void e7000_fetch_register (int); -static void e7000_store_register PARAMS ((int)); +static void e7000_store_register (int); -static void e7000_command PARAMS ((char *, int)); +static void e7000_command (char *, int); -static void e7000_login_command PARAMS ((char *, int)); +static void e7000_login_command (char *, int); -static void e7000_ftp_command PARAMS ((char *, int)); +static void e7000_ftp_command (char *, int); -static void e7000_drain_command PARAMS ((char *, int)); +static void e7000_drain_command (char *, int); -static void expect PARAMS ((char *)); +static void expect (char *); -static void expect_full_prompt PARAMS ((void)); +static void expect_full_prompt (void); -static void expect_prompt PARAMS ((void)); +static void expect_prompt (void); -static int e7000_parse_device PARAMS ((char *args, char *dev_name, - int baudrate)); +static int e7000_parse_device (char *args, char *dev_name, int baudrate); /* Variables. */ static serial_t e7000_desc; |