| Index: bfd/osf-core.c
|
| diff --git a/bfd/osf-core.c b/bfd/osf-core.c
|
| index d613bdbd61c08b3001158ce5512ea538dabb104f..ed5fbbe159829216d7ea89c6da36e0c411ef3270 100644
|
| --- a/bfd/osf-core.c
|
| +++ b/bfd/osf-core.c
|
| @@ -1,6 +1,6 @@
|
| /* BFD back-end for OSF/1 core files.
|
| Copyright 1993, 1994, 1995, 1998, 1999, 2001, 2002, 2003, 2004, 2005, 2006,
|
| - 2007, 2010, 2011 Free Software Foundation, Inc.
|
| + 2007, 2010, 2011, 2012 Free Software Foundation, Inc.
|
|
|
| This file is part of BFD, the Binary File Descriptor library.
|
|
|
| @@ -34,18 +34,8 @@
|
|
|
| /* forward declarations */
|
|
|
| -static asection *make_bfd_asection
|
| - PARAMS ((bfd *, const char *, flagword, bfd_size_type, bfd_vma, file_ptr));
|
| -static const bfd_target *osf_core_core_file_p
|
| - PARAMS ((bfd *));
|
| -static char *osf_core_core_file_failing_command
|
| - PARAMS ((bfd *));
|
| -static int osf_core_core_file_failing_signal
|
| - PARAMS ((bfd *));
|
| #define osf_core_core_file_matches_executable_p generic_core_file_matches_executable_p
|
| #define osf_core_core_file_pid _bfd_nocore_core_file_pid
|
| -static void swap_abort
|
| - PARAMS ((void));
|
|
|
| /* These are stored in the bfd's tdata */
|
|
|
| @@ -56,17 +46,16 @@ struct osf_core_struct
|
| };
|
|
|
| #define core_hdr(bfd) ((bfd)->tdata.osf_core_data)
|
| -#define core_signal(bfd) (core_hdr(bfd)->sig)
|
| +#define core_signal(bfd) (core_hdr(bfd)->sig)
|
| #define core_command(bfd) (core_hdr(bfd)->cmd)
|
|
|
| static asection *
|
| -make_bfd_asection (abfd, name, flags, size, vma, filepos)
|
| - bfd *abfd;
|
| - const char *name;
|
| - flagword flags;
|
| - bfd_size_type size;
|
| - bfd_vma vma;
|
| - file_ptr filepos;
|
| +make_bfd_asection (bfd *abfd,
|
| + const char *name,
|
| + flagword flags,
|
| + bfd_size_type size,
|
| + bfd_vma vma,
|
| + file_ptr filepos)
|
| {
|
| asection *asect;
|
|
|
| @@ -83,8 +72,7 @@ make_bfd_asection (abfd, name, flags, size, vma, filepos)
|
| }
|
|
|
| static const bfd_target *
|
| -osf_core_core_file_p (abfd)
|
| - bfd *abfd;
|
| +osf_core_core_file_p (bfd *abfd)
|
| {
|
| int val;
|
| int i;
|
| @@ -93,7 +81,7 @@ osf_core_core_file_p (abfd)
|
| bfd_size_type amt;
|
|
|
| amt = sizeof core_header;
|
| - val = bfd_bread ((PTR) &core_header, amt, abfd);
|
| + val = bfd_bread (& core_header, amt, abfd);
|
| if (val != sizeof core_header)
|
| return NULL;
|
|
|
| @@ -114,7 +102,7 @@ osf_core_core_file_p (abfd)
|
| flagword flags;
|
|
|
| amt = sizeof core_scnhdr;
|
| - val = bfd_bread ((PTR) &core_scnhdr, amt, abfd);
|
| + val = bfd_bread (& core_scnhdr, amt, abfd);
|
| if (val != sizeof core_scnhdr)
|
| break;
|
|
|
| @@ -161,24 +149,22 @@ osf_core_core_file_p (abfd)
|
| }
|
|
|
| static char *
|
| -osf_core_core_file_failing_command (abfd)
|
| - bfd *abfd;
|
| +osf_core_core_file_failing_command (bfd *abfd)
|
| {
|
| return core_command (abfd);
|
| }
|
|
|
| static int
|
| -osf_core_core_file_failing_signal (abfd)
|
| - bfd *abfd;
|
| +osf_core_core_file_failing_signal (bfd *abfd)
|
| {
|
| return core_signal (abfd);
|
| }
|
|
|
| /* If somebody calls any byte-swapping routines, shoot them. */
|
| static void
|
| -swap_abort()
|
| +swap_abort (void)
|
| {
|
| - abort(); /* This way doesn't require any declaration for ANSI to fuck up */
|
| + abort (); /* This way doesn't require any declaration for ANSI to fuck up */
|
| }
|
|
|
| #define NO_GET ((bfd_vma (*) (const void *)) swap_abort)
|
| @@ -236,5 +222,5 @@ const bfd_target osf_core_vec =
|
|
|
| NULL,
|
|
|
| - (PTR) 0 /* backend_data */
|
| + NULL /* backend_data */
|
| };
|
|
|