From 80b99ca092b628195fd1757a88eb66df21d51ad8 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 18 Jan 1996 22:42:41 +0000 Subject: [PATCH] * elfcore.h: Include before . PR 8807. --- bfd/ChangeLog | 4 ++++ bfd/elfcore.h | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d6320439178..dc00ab49e6a 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +Thu Jan 18 17:42:12 1996 Ian Lance Taylor + + * elfcore.h: Include before . + Wed Jan 17 12:40:14 1996 Ian Lance Taylor * cpu-powerpc.c (arch_info_struct): Change last entry to not point diff --git a/bfd/elfcore.h b/bfd/elfcore.h index e505759886d..e22faf7247c 100644 --- a/bfd/elfcore.h +++ b/bfd/elfcore.h @@ -19,6 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Core file support */ #ifdef HAVE_SYS_PROCFS_H /* Some core file support requires host /proc files */ +#include #include #else #define bfd_prstatus(abfd, descdata, descsz, filepos) true @@ -366,11 +367,11 @@ elf_core_file_p (abfd) switch (x_ehdr.e_ident[EI_DATA]) { case ELFDATA2MSB: /* Big-endian */ - if (abfd->xvec->byteorder_big_p == false) + if (! bfd_big_endian (abfd)) goto wrong; break; case ELFDATA2LSB: /* Little-endian */ - if (abfd->xvec->byteorder_big_p == true) + if (! bfd_little_endian (abfd)) goto wrong; break; case ELFDATANONE: /* No data encoding specified */ -- 2.30.2