From: Rich Felker <dalias@aerifal.cx>
Date: Sun, 5 Aug 2012 17:46:39 +0000 (-0400)
Subject: fix change lost in the process of integrating mips dynamic linker
X-Git-Tag: v0.9.4~39
X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=59f4086cb157ab15ab59474d7cfab3a5cb92c5bd;p=oweals%2Fmusl.git

fix change lost in the process of integrating mips dynamic linker
---

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;