about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-08-05 13:46:39 -0400
committerRich Felker <dalias@aerifal.cx>2012-08-05 13:46:39 -0400
commit59f4086cb157ab15ab59474d7cfab3a5cb92c5bd (patch)
treecfe35cd06e84eb18a6153c9d2fcaddcebd1c97b3 /src
parent470569ca00f4c6e388396614b9b9ce62aef239bb (diff)
downloadmusl-59f4086cb157ab15ab59474d7cfab3a5cb92c5bd.tar.gz
musl-59f4086cb157ab15ab59474d7cfab3a5cb92c5bd.tar.xz
musl-59f4086cb157ab15ab59474d7cfab3a5cb92c5bd.zip
fix change lost in the process of integrating mips dynamic linker
Diffstat (limited to 'src')
-rw-r--r--src/ldso/dynlink.c4
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;