diff options
author | Nick Clifton <nickc@redhat.com> | 2001-08-11 16:48:15 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2001-08-11 16:48:15 +0000 |
commit | 4e771d61a32b75417be0b4f7c3efbe2e3691056d (patch) | |
tree | 7b85f897a400bcd5874c48be3179b0d540fb698f /bfd/elf-bfd.h | |
parent | f72c8c98df046cd99996d5691e459800e3778f88 (diff) | |
download | gdb-4e771d61a32b75417be0b4f7c3efbe2e3691056d.zip gdb-4e771d61a32b75417be0b4f7c3efbe2e3691056d.tar.gz gdb-4e771d61a32b75417be0b4f7c3efbe2e3691056d.tar.bz2 |
replace direct invocation og elf vma print functions with indirect invocation
Diffstat (limited to 'bfd/elf-bfd.h')
-rw-r--r-- | bfd/elf-bfd.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h index b0e20ea..1d68432 100644 --- a/bfd/elf-bfd.h +++ b/bfd/elf-bfd.h @@ -636,6 +636,10 @@ struct elf_backend_data note is found in a core file. */ boolean (*elf_backend_grok_psinfo) PARAMS ((bfd *, Elf_Internal_Note *)); + /* Functions to print VMAs. Special code to handle 64 bit ELF files. */ + void (* elf_backend_sprintf_vma) PARAMS ((bfd *, char *, bfd_vma)); + void (* elf_backend_fprintf_vma) PARAMS ((bfd *, PTR, bfd_vma)); + /* The swapping table to use when dealing with ECOFF information. Used for the MIPS ELF .mdebug section. */ const struct ecoff_debug_swap *elf_backend_ecoff_debug_swap; @@ -999,8 +1003,8 @@ extern void bfd_elf_print_symbol PARAMS ((bfd *, PTR, asymbol *, #define bfd_elf32_print_symbol bfd_elf_print_symbol #define bfd_elf64_print_symbol bfd_elf_print_symbol -extern void bfd_elf_sprintf_vma PARAMS ((bfd *, char *, bfd_vma)); -extern void bfd_elf_fprintf_vma PARAMS ((bfd *, PTR, bfd_vma)); +extern void _bfd_elf_sprintf_vma PARAMS ((bfd *, char *, bfd_vma)); +extern void _bfd_elf_fprintf_vma PARAMS ((bfd *, PTR, bfd_vma)); extern unsigned long bfd_elf_hash PARAMS ((const char *)); |