diff options
Diffstat (limited to 'bfd/libpei.h')
-rw-r--r-- | bfd/libpei.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bfd/libpei.h b/bfd/libpei.h index 72fa7b5..9ed9c12 100644 --- a/bfd/libpei.h +++ b/bfd/libpei.h @@ -332,4 +332,6 @@ bfd_boolean _bfd_XX_bfd_copy_private_section_data PARAMS ((bfd *, asection *, bfd *, asection *)); /* Macro: Returns true if the bfd is a PE executable as opposed to a PE object file. */ -#define bfd_pe_executable_p(abfd) (strncmp ((abfd)->xvec->name, "pei-", 4) == 0) +#define bfd_pe_executable_p(abfd) \ + (strncmp ((abfd)->xvec->name, "pei-", 4) == 0 \ + || strncmp ((abfd)->xvec->name, "efi-app-", 8) == 0) |