diff options
author | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-11-30 08:39:46 +0000 |
commit | b34976b65aea8f33690229600bbf4527ec3118e1 (patch) | |
tree | 6411348664ef81ca2aa2e3ff325116e6e6502edf /bfd/mach-o.h | |
parent | 583d52d728c60410c0d39bae68ee536a7b9e7a6c (diff) | |
download | gdb-b34976b65aea8f33690229600bbf4527ec3118e1.zip gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.gz gdb-b34976b65aea8f33690229600bbf4527ec3118e1.tar.bz2 |
s/boolean/bfd_boolean/ s/true/TRUE/ s/false/FALSE/. Simplify
comparisons of bfd_boolean vars with TRUE/FALSE. Formatting.
Diffstat (limited to 'bfd/mach-o.h')
-rw-r--r-- | bfd/mach-o.h | 59 |
1 files changed, 40 insertions, 19 deletions
diff --git a/bfd/mach-o.h b/bfd/mach-o.h index f780273..c94f01d 100644 --- a/bfd/mach-o.h +++ b/bfd/mach-o.h @@ -463,25 +463,46 @@ mach_o_data_struct; typedef struct mach_o_data_struct bfd_mach_o_data_struct; -boolean bfd_mach_o_valid PARAMS ((bfd *)); -int bfd_mach_o_scan_read_symtab_symbol PARAMS ((bfd *, bfd_mach_o_symtab_command *, asymbol *, unsigned long)); -int bfd_mach_o_scan_read_symtab_strtab PARAMS ((bfd *, bfd_mach_o_symtab_command *)); -int bfd_mach_o_scan_read_symtab_symbols PARAMS ((bfd *, bfd_mach_o_symtab_command *)); -int bfd_mach_o_scan_read_dysymtab_symbol PARAMS ((bfd *, bfd_mach_o_dysymtab_command *, bfd_mach_o_symtab_command *, asymbol *, unsigned long)); -int bfd_mach_o_scan_start_address PARAMS ((bfd *)); -int bfd_mach_o_scan PARAMS ((bfd *, bfd_mach_o_header *, bfd_mach_o_data_struct *)); -boolean bfd_mach_o_mkobject PARAMS ((bfd *)); -const bfd_target * bfd_mach_o_object_p PARAMS ((bfd *)); -const bfd_target * bfd_mach_o_core_p PARAMS ((bfd *)); -const bfd_target * bfd_mach_o_archive_p PARAMS ((bfd *)); -bfd * bfd_mach_o_openr_next_archived_file PARAMS ((bfd *, bfd *)); -int bfd_mach_o_lookup_section PARAMS ((bfd *, asection *, bfd_mach_o_load_command **, bfd_mach_o_section **)); -int bfd_mach_o_lookup_command PARAMS ((bfd *, bfd_mach_o_load_command_type, bfd_mach_o_load_command **)); -unsigned long bfd_mach_o_stack_addr PARAMS ((enum bfd_mach_o_cpu_type)); -int bfd_mach_o_core_fetch_environment PARAMS ((bfd *, unsigned char **, unsigned int *)); -char * bfd_mach_o_core_file_failing_command PARAMS ((bfd *)); -int bfd_mach_o_core_file_failing_signal PARAMS ((bfd *)); -boolean bfd_mach_o_core_file_matches_executable_p PARAMS ((bfd *, bfd *)); +bfd_boolean bfd_mach_o_valid + PARAMS ((bfd *)); +int bfd_mach_o_scan_read_symtab_symbol + PARAMS ((bfd *, bfd_mach_o_symtab_command *, asymbol *, unsigned long)); +int bfd_mach_o_scan_read_symtab_strtab + PARAMS ((bfd *, bfd_mach_o_symtab_command *)); +int bfd_mach_o_scan_read_symtab_symbols + PARAMS ((bfd *, bfd_mach_o_symtab_command *)); +int bfd_mach_o_scan_read_dysymtab_symbol + PARAMS ((bfd *, bfd_mach_o_dysymtab_command *, bfd_mach_o_symtab_command *, + asymbol *, unsigned long)); +int bfd_mach_o_scan_start_address + PARAMS ((bfd *)); +int bfd_mach_o_scan + PARAMS ((bfd *, bfd_mach_o_header *, bfd_mach_o_data_struct *)); +bfd_boolean bfd_mach_o_mkobject + PARAMS ((bfd *)); +const bfd_target * bfd_mach_o_object_p + PARAMS ((bfd *)); +const bfd_target * bfd_mach_o_core_p + PARAMS ((bfd *)); +const bfd_target * bfd_mach_o_archive_p + PARAMS ((bfd *)); +bfd * bfd_mach_o_openr_next_archived_file + PARAMS ((bfd *, bfd *)); +int bfd_mach_o_lookup_section + PARAMS ((bfd *, asection *, bfd_mach_o_load_command **, + bfd_mach_o_section **)); +int bfd_mach_o_lookup_command + PARAMS ((bfd *, bfd_mach_o_load_command_type, bfd_mach_o_load_command **)); +unsigned long bfd_mach_o_stack_addr + PARAMS ((enum bfd_mach_o_cpu_type)); +int bfd_mach_o_core_fetch_environment + PARAMS ((bfd *, unsigned char **, unsigned int *)); +char * bfd_mach_o_core_file_failing_command + PARAMS ((bfd *)); +int bfd_mach_o_core_file_failing_signal + PARAMS ((bfd *)); +bfd_boolean bfd_mach_o_core_file_matches_executable_p + PARAMS ((bfd *, bfd *)); extern const bfd_target mach_o_be_vec; extern const bfd_target mach_o_le_vec; |