diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-27 10:35:20 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-27 10:35:20 +0000 |
commit | e4b172749ce95c1a8523817682918a2e4977cf78 (patch) | |
tree | e555d2887ec92d081fe37312c4ef734e645c8491 /bfd/i386lynx.c | |
parent | 25a1ff5b2d692cfdd93d0793d4c123e96d2a661d (diff) | |
download | gdb-e4b172749ce95c1a8523817682918a2e4977cf78.zip gdb-e4b172749ce95c1a8523817682918a2e4977cf78.tar.gz gdb-e4b172749ce95c1a8523817682918a2e4977cf78.tar.bz2 |
Add missing prototypes
Diffstat (limited to 'bfd/i386lynx.c')
-rw-r--r-- | bfd/i386lynx.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/bfd/i386lynx.c b/bfd/i386lynx.c index c35d24a..f5dd7f2 100644 --- a/bfd/i386lynx.c +++ b/bfd/i386lynx.c @@ -1,5 +1,5 @@ /* BFD back-end for i386 a.out binaries under LynxOS. - Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996 + Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 2001 Free Software Foundation, Inc. This file is part of BFD, the Binary File Descriptor library. @@ -83,6 +83,14 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #include "libaout.h" #include "aout/aout64.h" +void NAME (lynx,swap_std_reloc_out) PARAMS ((bfd *, arelent *, struct reloc_std_external *)); +void NAME (lynx,swap_ext_reloc_out) PARAMS ((bfd *, arelent *, struct reloc_ext_external *)); +void NAME (lynx,swap_ext_reloc_in) PARAMS ((bfd *, struct reloc_ext_external *, arelent *, asymbol **, bfd_size_type)); +void NAME (lynx,swap_std_reloc_in) PARAMS ((bfd *, struct reloc_std_external *, arelent *, asymbol **, bfd_size_type)); +boolean NAME (lynx,slurp_reloc_table) PARAMS ((bfd *, sec_ptr, asymbol **)); +boolean NAME (lynx,squirt_out_relocs) PARAMS ((bfd *, asection *)); +long NAME (lynx,canonicalize_reloc) PARAMS ((bfd *, sec_ptr, arelent **, asymbol **)); + #ifdef LYNX_CORE char *lynx_core_file_failing_command (); |