diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-08-05 13:46:39 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-08-05 13:46:39 -0400 |
commit | 59f4086cb157ab15ab59474d7cfab3a5cb92c5bd (patch) | |
tree | cfe35cd06e84eb18a6153c9d2fcaddcebd1c97b3 | |
parent | 470569ca00f4c6e388396614b9b9ce62aef239bb (diff) | |
download | musl-59f4086cb157ab15ab59474d7cfab3a5cb92c5bd.tar.gz musl-59f4086cb157ab15ab59474d7cfab3a5cb92c5bd.tar.xz musl-59f4086cb157ab15ab59474d7cfab3a5cb92c5bd.zip |
fix change lost in the process of integrating mips dynamic linker
-rw-r--r-- | src/ldso/dynlink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ldso/dynlink.c b/src/ldso/dynlink.c index 8f32f98f..6801d5fd 100644 --- a/src/ldso/dynlink.c +++ b/src/ldso/dynlink.c @@ -22,8 +22,6 @@ static char errbuf[128]; #ifdef SHARED -#include "reloc.h" - #if ULONG_MAX == 0xffffffff typedef Elf32_Ehdr Ehdr; typedef Elf32_Phdr Phdr; @@ -68,6 +66,8 @@ struct dso { char buf[]; }; +#include "reloc.h" + void __init_ssp(size_t *); static struct dso *head, *tail, *libc; |