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/ocd.c | |
parent | 3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff) | |
download | gdb-a14ed312fd86dd2c862847230931451da2e49942.zip gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.bz2 |
PARAMS removal.
Diffstat (limited to 'gdb/ocd.c')
-rw-r--r-- | gdb/ocd.c | 27 |
1 files changed, 13 insertions, 14 deletions
@@ -39,32 +39,31 @@ /* Prototypes for local functions */ -static int ocd_read_bytes PARAMS ((CORE_ADDR memaddr, - char *myaddr, int len)); +static int ocd_read_bytes (CORE_ADDR memaddr, char *myaddr, int len); -static int ocd_start_remote PARAMS ((PTR dummy)); +static int ocd_start_remote (PTR dummy); -static int readchar PARAMS ((int timeout)); +static int readchar (int timeout); -static void reset_packet PARAMS ((void)); +static void reset_packet (void); -static void output_packet PARAMS ((void)); +static void output_packet (void); -static int get_quoted_char PARAMS ((int timeout)); +static int get_quoted_char (int timeout); -static void put_quoted_char PARAMS ((int c)); +static void put_quoted_char (int c); -static void ocd_interrupt PARAMS ((int signo)); +static void ocd_interrupt (int signo); -static void ocd_interrupt_twice PARAMS ((int signo)); +static void ocd_interrupt_twice (int signo); -static void interrupt_query PARAMS ((void)); +static void interrupt_query (void); -static unsigned char *ocd_do_command PARAMS ((int cmd, int *statusp, int *lenp)); +static unsigned char *ocd_do_command (int cmd, int *statusp, int *lenp); -static void ocd_put_packet PARAMS ((unsigned char *packet, int pktlen)); +static void ocd_put_packet (unsigned char *packet, int pktlen); -static unsigned char *ocd_get_packet PARAMS ((int cmd, int *pktlen, int timeout)); +static unsigned char *ocd_get_packet (int cmd, int *pktlen, int timeout); static struct target_ops *current_ops = NULL; |