summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-10-07 06:01:37 +0000
committerMike Frysinger <vapier@gentoo.org>2006-10-07 06:01:37 +0000
commitb9950f0c0f08ded31e8b041e483693619b6750fb (patch)
tree3ca2916b397b783fa5e1e34c80ae74d6113e1d7d /utils
parent8006438996ba503957507974948c7673384b777c (diff)
the makefile will include elf.h for us #778
Diffstat (limited to 'utils')
-rw-r--r--utils/ldd.c2
-rw-r--r--utils/readelf.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/utils/ldd.c b/utils/ldd.c
index b454779e1..e0112924d 100644
--- a/utils/ldd.c
+++ b/utils/ldd.c
@@ -27,8 +27,8 @@
#include "bswap.h"
#include "link.h"
-#include "elf.h"
#include "dl-defs.h"
+/* makefile will include elf.h for us */
#ifdef DMALLOC
#include <dmalloc.h>
diff --git a/utils/readelf.c b/utils/readelf.c
index d562b1138..0ff5d2563 100644
--- a/utils/readelf.c
+++ b/utils/readelf.c
@@ -24,8 +24,8 @@
#include <sys/types.h>
#include "bswap.h"
-#include "elf.h"
#include "link.h"
+/* makefile will include elf.h for us */
int byteswap;
inline uint32_t byteswap32_to_host(uint32_t value)