diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2009-01-28 13:23:18 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2009-01-28 13:23:18 +0000 |
commit | 8a90f7f13f7dfbe794b77e8d1e15c0eb0b4465f5 (patch) | |
tree | 15e659df6171aa77419a46e48b00194b99f437b3 | |
parent | ace5d669b2cc4908482ed0c788566eb7bbbb84dd (diff) | |
download | uClibc-alpine-8a90f7f13f7dfbe794b77e8d1e15c0eb0b4465f5.tar.bz2 uClibc-alpine-8a90f7f13f7dfbe794b77e8d1e15c0eb0b4465f5.tar.xz |
Must include tls.h before link.h to have TLS related field available in struct link_map.
This change is now required after recent clean-up of installed headers.
Likely we were including tls.h indirectly.
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
-rw-r--r-- | test/tls/tst-tls6.c | 2 | ||||
-rw-r--r-- | test/tls/tst-tls7.c | 2 | ||||
-rw-r--r-- | test/tls/tst-tls8.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/tls/tst-tls6.c b/test/tls/tst-tls6.c index 2f58ea6ad..5733aa587 100644 --- a/test/tls/tst-tls6.c +++ b/test/tls/tst-tls6.c @@ -2,8 +2,8 @@ #include <stdio.h> #include <stdlib.h> -#include <link.h> #include <tls.h> +#include <link.h> #ifdef __UCLIBC__ #include "dl-elf.h" #include "dl-hash.h" diff --git a/test/tls/tst-tls7.c b/test/tls/tst-tls7.c index 3397614ae..41da2708d 100644 --- a/test/tls/tst-tls7.c +++ b/test/tls/tst-tls7.c @@ -2,8 +2,8 @@ #include <stdio.h> #include <stdlib.h> -#include <link.h> #include <tls.h> +#include <link.h> #ifdef __UCLIBC__ #include "dl-elf.h" #include "dl-hash.h" diff --git a/test/tls/tst-tls8.c b/test/tls/tst-tls8.c index 6adb0968b..2541609f1 100644 --- a/test/tls/tst-tls8.c +++ b/test/tls/tst-tls8.c @@ -2,8 +2,8 @@ #include <stdio.h> #include <stdlib.h> -#include <link.h> #include <tls.h> +#include <link.h> #ifdef __UCLIBC__ #include "dl-elf.h" #include "dl-hash.h" |