aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf32-am33lin.c
diff options
context:
space:
mode:
Diffstat (limited to 'bfd/elf32-am33lin.c')
-rw-r--r--bfd/elf32-am33lin.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/bfd/elf32-am33lin.c b/bfd/elf32-am33lin.c
index 5ddc7c4..d260768 100644
--- a/bfd/elf32-am33lin.c
+++ b/bfd/elf32-am33lin.c
@@ -38,7 +38,7 @@
#define _bfd_mn10300_elf_final_write_processing _bfd_am33_elf_final_write_processing
/* Support for core dump NOTE sections. */
-static bfd_boolean
+static bool
elf32_am33lin_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
{
int offset;
@@ -47,7 +47,7 @@ elf32_am33lin_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
switch (note->descsz)
{
default:
- return FALSE;
+ return false;
case 184:
case 188: /* Linux/am33 */
@@ -69,13 +69,13 @@ elf32_am33lin_grok_prstatus (bfd *abfd, Elf_Internal_Note *note)
note->descpos + offset);
}
-static bfd_boolean
+static bool
elf32_am33lin_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
{
switch (note->descsz)
{
default:
- return FALSE;
+ return false;
case 124: /* Linux/am33 elf_prpsinfo */
elf_tdata (abfd)->core->program
@@ -96,12 +96,12 @@ elf32_am33lin_grok_psinfo (bfd *abfd, Elf_Internal_Note *note)
command[n - 1] = '\0';
}
- return TRUE;
+ return true;
}
#define elf_backend_grok_prstatus elf32_am33lin_grok_prstatus
#define elf_backend_grok_psinfo elf32_am33lin_grok_psinfo
-#define elf_backend_linux_prpsinfo32_ugid16 TRUE
+#define elf_backend_linux_prpsinfo32_ugid16 true
#include "elf-m10300.c"