diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-31 01:37:38 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-31 01:37:38 +0000 |
commit | e2d432ecf053ec5f69f42263b69daee149d9f345 (patch) | |
tree | f0c5a1dd1f0b53b02a8633fe911be3674348b244 /ldso/util/readsoname.c | |
parent | 62d35f17c6463a9de72ad94a81bfb1900b629562 (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/readsoname.c')
-rw-r--r-- | ldso/util/readsoname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/util/readsoname.c b/ldso/util/readsoname.c index db772f0ae..2b3f8353f 100644 --- a/ldso/util/readsoname.c +++ b/ldso/util/readsoname.c @@ -5,9 +5,9 @@ #include <sys/stat.h> #include <sys/mman.h> #include <link.h> -#include <elf.h> #include <unistd.h> #include <sys/types.h> +#include "elf.h" #include "../config.h" #include "readsoname.h" |