summaryrefslogtreecommitdiff
path: root/ldso/ldso/readelflib1.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-06-04 22:13:51 +0000
committerEric Andersen <andersen@codepoet.org>2001-06-04 22:13:51 +0000
commitf68eb8d50b11310628f53a9378bf612e8d4bfa09 (patch)
treee3a4073bbc3ac2349c89ad9b3494b05838f95c0b /ldso/ldso/readelflib1.c
parent03f338ab663d8b2fa16c8d1f83be51ecf9c79312 (diff)
Teach the ldso stuff to use the proper elf.h header file, not a local copy.
-Erik
Diffstat (limited to 'ldso/ldso/readelflib1.c')
-rw-r--r--ldso/ldso/readelflib1.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ldso/ldso/readelflib1.c b/ldso/ldso/readelflib1.c
index a80aa0579..0241b5f9d 100644
--- a/ldso/ldso/readelflib1.c
+++ b/ldso/ldso/readelflib1.c
@@ -22,7 +22,8 @@
library into memory and add the symbol table info to the chain. */
#include <asm/mman.h>
-#include "elf.h"
+#include <elf.h>
+#include "linuxelf.h"
#include "string.h"
#include "hash.h"
#include "sysdep.h"