diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-07-30 01:48:28 +0000 |
commit | fba45db2faf619e71856ee38ec63949c0ef6903e (patch) | |
tree | 107efc21d2b12f54d84b59e75251449e3d5fd096 /gdb/gdbserver/gdbreplay.c | |
parent | 29e6d33b03a5e39540d17bc8235573b1dac13341 (diff) | |
download | gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.zip gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.gz gdb-fba45db2faf619e71856ee38ec63949c0ef6903e.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/gdbserver/gdbreplay.c')
-rw-r--r-- | gdb/gdbserver/gdbreplay.c | 26 |
1 files changed, 8 insertions, 18 deletions
diff --git a/gdb/gdbserver/gdbreplay.c b/gdb/gdbserver/gdbreplay.c index 9e88a75..4fabf1d 100644 --- a/gdb/gdbserver/gdbreplay.c +++ b/gdb/gdbserver/gdbreplay.c @@ -41,8 +41,7 @@ static int remote_desc; Then return to command level. */ void -perror_with_name (string) - char *string; +perror_with_name (char *string) { #ifndef STDC_HEADERS extern int sys_nerr; @@ -63,11 +62,7 @@ perror_with_name (string) } static void -sync_error (fp, desc, expect, got) - FILE *fp; - char *desc; - int expect; - int got; +sync_error (FILE *fp, char *desc, int expect, int got) { fprintf (stderr, "\n%s\n", desc); fprintf (stderr, "At logfile offset %ld, expected '0x%x' got '0x%x'\n", @@ -77,7 +72,7 @@ sync_error (fp, desc, expect, got) } void -remote_close () +remote_close (void) { close (remote_desc); } @@ -86,8 +81,7 @@ remote_close () NAME is the filename used for communication. */ void -remote_open (name) - char *name; +remote_open (char *name) { extern char *strchr (); @@ -159,8 +153,7 @@ remote_open (name) } static int -tohex (ch) - int ch; +tohex (int ch) { if (ch >= '0' && ch <= '9') { @@ -180,8 +173,7 @@ tohex (ch) } static int -logchar (fp) - FILE *fp; +logchar (FILE *fp) { int ch; int ch2; @@ -244,8 +236,7 @@ logchar (fp) blank) up until a \n is read from fp (which is not matched) */ void -expect (fp) - FILE *fp; +expect (FILE *fp) { int fromlog; unsigned char fromgdb; @@ -276,8 +267,7 @@ expect (fp) \n is read from fp (which is discarded and not sent to gdb). */ void -play (fp) - FILE *fp; +play (FILE *fp) { int fromlog; char ch; |