diff options
Diffstat (limited to 'bfd/aout-target.h')
-rw-r--r-- | bfd/aout-target.h | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/bfd/aout-target.h b/bfd/aout-target.h index b2acc090887..cc4a4f50df8 100644 --- a/bfd/aout-target.h +++ b/bfd/aout-target.h @@ -201,21 +201,21 @@ MY(object_p) (abfd) #ifndef MY_mkobject -static boolean MY(mkobject) PARAMS ((bfd *)); +static bfd_boolean MY(mkobject) PARAMS ((bfd *)); -static boolean +static bfd_boolean MY(mkobject) (abfd) bfd *abfd; { if (! NAME(aout,mkobject) (abfd)) - return false; + return FALSE; #if 0 /* Sizes get set in set_sizes callback, later, after we know the architecture and machine. */ adata(abfd).page_size = TARGET_PAGE_SIZE; adata(abfd).segment_size = SEGMENT_SIZE; adata(abfd).exec_bytes_size = EXEC_BYTES_SIZE; #endif - return true; + return TRUE; } #define MY_mkobject MY(mkobject) #endif @@ -228,10 +228,10 @@ MY(mkobject) (abfd) section contents, and copy_private_bfd_data is not called until after the section contents have been set. */ -static boolean MY_bfd_copy_private_section_data +static bfd_boolean MY_bfd_copy_private_section_data PARAMS ((bfd *, asection *, bfd *, asection *)); -static boolean +static bfd_boolean MY_bfd_copy_private_section_data (ibfd, isec, obfd, osec) bfd *ibfd; asection *isec ATTRIBUTE_UNUSED; @@ -241,7 +241,7 @@ MY_bfd_copy_private_section_data (ibfd, isec, obfd, osec) if (bfd_get_flavour (ibfd) == bfd_target_aout_flavour && bfd_get_flavour (obfd) == bfd_target_aout_flavour) obj_aout_subformat (obfd) = obj_aout_subformat (ibfd); - return true; + return TRUE; } #endif @@ -251,9 +251,9 @@ MY_bfd_copy_private_section_data (ibfd, isec, obfd, osec) file header, symbols, and relocation. */ #ifndef MY_write_object_contents -static boolean MY(write_object_contents) PARAMS ((bfd *)); +static bfd_boolean MY(write_object_contents) PARAMS ((bfd *)); -static boolean +static bfd_boolean MY(write_object_contents) (abfd) bfd *abfd; { @@ -264,16 +264,16 @@ MY(write_object_contents) (abfd) WRITE_HEADERS(abfd, execp); - return true; + return TRUE; } #define MY_write_object_contents MY(write_object_contents) #endif #ifndef MY_set_sizes -static boolean MY(set_sizes) PARAMS ((bfd *)); +static bfd_boolean MY(set_sizes) PARAMS ((bfd *)); -static boolean +static bfd_boolean MY(set_sizes) (abfd) bfd *abfd; { @@ -287,7 +287,7 @@ MY(set_sizes) (abfd) #endif adata(abfd).exec_bytes_size = EXEC_BYTES_SIZE; - return true; + return TRUE; } #define MY_set_sizes MY(set_sizes) #endif @@ -375,9 +375,9 @@ MY_final_link_callback (abfd, ptreloff, pdreloff, psymoff) /* Final link routine. We need to use a call back to get the correct offsets in the output file. */ -static boolean MY_bfd_final_link PARAMS ((bfd *, struct bfd_link_info *)); +static bfd_boolean MY_bfd_final_link PARAMS ((bfd *, struct bfd_link_info *)); -static boolean +static bfd_boolean MY_bfd_final_link (abfd, info) bfd *abfd; struct bfd_link_info *info; |