diff options
author | Kevin Buettner <kevinb@redhat.com> | 2000-08-21 17:30:58 +0000 |
---|---|---|
committer | Kevin Buettner <kevinb@redhat.com> | 2000-08-21 17:30:58 +0000 |
commit | 9df3df999d6456c2e3347efd432ef1f9d91e39f4 (patch) | |
tree | 9c77c759610c1b3ac1000c9db3748acf85302ae2 /gdb/dsrec.c | |
parent | 604259a086894006eb6fd65142a26305858862e7 (diff) | |
download | gdb-9df3df999d6456c2e3347efd432ef1f9d91e39f4.zip gdb-9df3df999d6456c2e3347efd432ef1f9d91e39f4.tar.gz gdb-9df3df999d6456c2e3347efd432ef1f9d91e39f4.tar.bz2 |
Protoization.
Diffstat (limited to 'gdb/dsrec.c')
-rw-r--r-- | gdb/dsrec.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gdb/dsrec.c b/gdb/dsrec.c index 8f58916..6065380 100644 --- a/gdb/dsrec.c +++ b/gdb/dsrec.c @@ -44,14 +44,8 @@ static int make_srec (char *srec, CORE_ADDR targ_addr, bfd * abfd, and returns non-zero if the ack is read correctly. */ void -load_srec (desc, file, load_offset, maxrecsize, flags, hashmark, waitack) - serial_t desc; - const char *file; - bfd_vma load_offset; - int maxrecsize; - int flags; - int hashmark; - int (*waitack) (void); +load_srec (serial_t desc, const char *file, bfd_vma load_offset, int maxrecsize, + int flags, int hashmark, int (*waitack) (void)) { bfd *abfd; asection *s; |