Browse Source

the makefile will include elf.h for us #778

Mike Frysinger 18 years ago
parent
commit
b9950f0c0f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      utils/ldd.c
  2. 1 1
      utils/readelf.c

+ 1 - 1
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>

+ 1 - 1
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)