summaryrefslogtreecommitdiff
path: root/bfd/aout-target.h
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/aout-target.h')
-rw-r--r--bfd/aout-target.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/bfd/aout-target.h b/bfd/aout-target.h
index 92fc3ed4dd2..b5155ac36c5 100644
--- a/bfd/aout-target.h
+++ b/bfd/aout-target.h
@@ -193,7 +193,7 @@ MY (object_p) (bfd *abfd)
#ifndef MY_mkobject
-static bfd_boolean
+static bool
MY (mkobject) (bfd *abfd)
{
return NAME (aout, mkobject (abfd));
@@ -210,7 +210,7 @@ MY (mkobject) (bfd *abfd)
section contents, and copy_private_bfd_data is not called until
after the section contents have been set. */
-static bfd_boolean
+static bool
MY_bfd_copy_private_section_data (bfd *ibfd,
asection *isec ATTRIBUTE_UNUSED,
bfd *obfd,
@@ -219,7 +219,7 @@ MY_bfd_copy_private_section_data (bfd *ibfd,
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
@@ -230,7 +230,7 @@ MY_bfd_copy_private_section_data (bfd *ibfd,
#ifndef MY_write_object_contents
-static bfd_boolean
+static bool
MY (write_object_contents) (bfd *abfd)
{
struct external_exec exec_bytes;
@@ -240,14 +240,14 @@ MY (write_object_contents) (bfd *abfd)
WRITE_HEADERS (abfd, execp);
- return TRUE;
+ return true;
}
#define MY_write_object_contents MY (write_object_contents)
#endif
#ifndef MY_set_sizes
-static bfd_boolean
+static bool
MY (set_sizes) (bfd *abfd)
{
adata(abfd).page_size = TARGET_PAGE_SIZE;
@@ -260,7 +260,7 @@ MY (set_sizes) (bfd *abfd)
#endif
adata(abfd).exec_bytes_size = EXEC_BYTES_SIZE;
- return TRUE;
+ return true;
}
#define MY_set_sizes MY (set_sizes)
#endif
@@ -345,7 +345,7 @@ MY_final_link_callback (bfd *abfd,
/* Final link routine. We need to use a call back to get the correct
offsets in the output file. */
-static bfd_boolean
+static bool
MY_bfd_final_link (bfd *abfd, struct bfd_link_info *info)
{
return NAME (aout, final_link) (abfd, info, MY_final_link_callback);
@@ -598,11 +598,11 @@ MY_bfd_final_link (bfd *abfd, struct bfd_link_info *info)
/* Handle closing of a BFD including the resource-releasing parts. */
-static bfd_boolean
+static bool
MY_close_and_cleanup (bfd *abfd)
{
if (!MY_bfd_free_cached_info (abfd))
- return FALSE;
+ return false;
return _bfd_generic_close_and_cleanup (abfd);
}