diff options
Diffstat (limited to 'bfd/aout-adobe.c')
-rw-r--r-- | bfd/aout-adobe.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/bfd/aout-adobe.c b/bfd/aout-adobe.c index 2c11ffe..8216c7e 100644 --- a/bfd/aout-adobe.c +++ b/bfd/aout-adobe.c @@ -1,5 +1,6 @@ /* BFD back-end for a.out.adobe binaries. - Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. + Copyright 1990, 91, 92, 93, 94, 95, 96, 98, 1999 + Free Software Foundation, Inc. Written by Cygnus Support. Based on bout.c. This file is part of BFD, the Binary File Descriptor library. @@ -372,8 +373,8 @@ aout_adobe_write_object_contents (abfd) static void aout_adobe_write_section (abfd, sect) - bfd *abfd; - sec_ptr sect; + bfd *abfd ATTRIBUTE_UNUSED; + sec_ptr sect ATTRIBUTE_UNUSED; { /* FIXME XXX */ } @@ -450,8 +451,8 @@ aout_adobe_set_arch_mach (abfd, arch, machine) static int aout_adobe_sizeof_headers (ignore_abfd, ignore) - bfd *ignore_abfd; - boolean ignore; + bfd *ignore_abfd ATTRIBUTE_UNUSED; + boolean ignore ATTRIBUTE_UNUSED; { return sizeof(struct internal_exec); } @@ -523,5 +524,7 @@ const bfd_target a_out_adobe_vec = BFD_JUMP_TABLE_LINK (aout_32), BFD_JUMP_TABLE_DYNAMIC (_bfd_nodynamic), + NULL, + (PTR) 0 }; |