diff options
author | Ian Lance Taylor <ian@airs.com> | 1993-11-08 23:22:49 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1993-11-08 23:22:49 +0000 |
commit | e2756048da2270c0be2270581a235e0fd89126e0 (patch) | |
tree | 1d0295b2e2b927ec22c3288dd217f755f48ed906 /bfd/bfd-in2.h | |
parent | de759c833b26a89918914bd87d17bbd9e1bd9b2e (diff) | |
download | gdb-e2756048da2270c0be2270581a235e0fd89126e0.zip gdb-e2756048da2270c0be2270581a235e0fd89126e0.tar.gz gdb-e2756048da2270c0be2270581a235e0fd89126e0.tar.bz2 |
* reloc.c: Use const instead of CONST.
(bfd_perform_relocation): Make variable howto a const pointer.
* bfd-in2.h, libbfd.h: Rebuilt.
Diffstat (limited to 'bfd/bfd-in2.h')
-rw-r--r-- | bfd/bfd-in2.h | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/bfd/bfd-in2.h b/bfd/bfd-in2.h index a81a0ad..359078a 100644 --- a/bfd/bfd-in2.h +++ b/bfd/bfd-in2.h @@ -490,7 +490,7 @@ bfd_create PARAMS ((CONST char *filename, bfd *templ)); /* Byte swapping macros for user section data. */ #define bfd_put_8(abfd, val, ptr) \ - (*((unsigned char *)(ptr)) = (unsigned char)val) + (*((unsigned char *)(ptr)) = (unsigned char)(val)) #define bfd_put_signed_8 \ bfd_put_8 #define bfd_get_8(abfd, ptr) \ @@ -1001,7 +1001,7 @@ typedef struct reloc_cache_entry bfd_vma addend; /* Pointer to how to perform the required relocation */ - CONST struct reloc_howto_struct *howto; + const struct reloc_howto_struct *howto; } arelent; enum complain_overflow @@ -1356,26 +1356,10 @@ typedef enum bfd_reloc_code_real /* this must be the highest numeric value */ BFD_RELOC_UNUSED } bfd_reloc_code_real_type; -CONST struct reloc_howto_struct * +const struct reloc_howto_struct * bfd_reloc_type_lookup PARAMS ((bfd *abfd, bfd_reloc_code_real_type code)); -unsigned int -bfd_get_reloc_upper_bound PARAMS ((bfd *abfd, asection *sect)); - -unsigned int -bfd_canonicalize_reloc - PARAMS ((bfd *abfd, - asection *sec, - arelent **loc, - asymbol **syms)); - -void -bfd_set_reloc - PARAMS ((bfd *abfd, sec_ptr *sec, arelent **rel, unsigned int count) - - ); - typedef struct symbol_cache_entry { @@ -1647,6 +1631,22 @@ struct _bfd asymbol **ld_symbols; }; +unsigned int +bfd_get_reloc_upper_bound PARAMS ((bfd *abfd, asection *sect)); + +unsigned int +bfd_canonicalize_reloc + PARAMS ((bfd *abfd, + asection *sec, + arelent **loc, + asymbol **syms)); + +void +bfd_set_reloc + PARAMS ((bfd *abfd, asection *sec, arelent **rel, unsigned int count) + + ); + boolean bfd_set_file_flags PARAMS ((bfd *abfd, flagword flags)); |