summaryrefslogtreecommitdiff
path: root/ldso/util/readelf.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-31 01:37:38 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-31 01:37:38 +0000
commite2d432ecf053ec5f69f42263b69daee149d9f345 (patch)
treef0c5a1dd1f0b53b02a8633fe911be3674348b244 /ldso/util/readelf.c
parent62d35f17c6463a9de72ad94a81bfb1900b629562 (diff)
make sure all utilities will build even with older toolchains by
using our own local elf.h header rather than the system one. -Erik
Diffstat (limited to 'ldso/util/readelf.c')
-rw-r--r--ldso/util/readelf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/util/readelf.c b/ldso/util/readelf.c
index 4467fc684..903b63148 100644
--- a/ldso/util/readelf.c
+++ b/ldso/util/readelf.c
@@ -29,7 +29,6 @@
*/
-#include <elf.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
@@ -38,6 +37,7 @@
#include <sys/mman.h>
#include <sys/stat.h>
#include <sys/types.h>
+#include "elf.h"