diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-04 22:13:51 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-04 22:13:51 +0000 |
commit | f68eb8d50b11310628f53a9378bf612e8d4bfa09 (patch) | |
tree | e3a4073bbc3ac2349c89ad9b3494b05838f95c0b /ldso/util/ldd.c | |
parent | 03f338ab663d8b2fa16c8d1f83be51ecf9c79312 (diff) |
Teach the ldso stuff to use the proper elf.h header file, not a local copy.
-Erik
Diffstat (limited to 'ldso/util/ldd.c')
-rw-r--r-- | ldso/util/ldd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ldso/util/ldd.c b/ldso/util/ldd.c index ea4f1f5ef..dcf895d19 100644 --- a/ldso/util/ldd.c +++ b/ldso/util/ldd.c @@ -23,9 +23,10 @@ #include <unistd.h> #include <errno.h> #include <sys/wait.h> -#include "../d-link/elf.h" +#include <elf.h> +#include "../d-link/linuxelf.h" #include "../config.h" -#include "readelf.h" +#include "readsoname.h" struct exec { |