summaryrefslogtreecommitdiff
path: root/elf/tst-tlsmod14a.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-07-28 21:50:26 +0000
committerRoland McGrath <roland@gnu.org>2003-07-28 21:50:26 +0000
commit23195635ae74449727f8c07469b347bf884a37fa (patch)
treed28e40206ffbbdca68592d09e88824a9653b4861 /elf/tst-tlsmod14a.c
parentcbb91e21b41fd79950512674de7c76fd24562764 (diff)
* elf/tst-tls14.c [USE_TLS && HAVE___THREAD]: Conditionalize on this.
* elf/tst-tlsmod14a.c: Likewise. * sysdeps/unix/sysv/linux/sys/sysctl.h: Include <linux/compiler.h> before <linux/sysctl.h>.
Diffstat (limited to 'elf/tst-tlsmod14a.c')
-rw-r--r--elf/tst-tlsmod14a.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/elf/tst-tlsmod14a.c b/elf/tst-tlsmod14a.c
index 4843e5937e..0bb393d9c5 100644
--- a/elf/tst-tlsmod14a.c
+++ b/elf/tst-tlsmod14a.c
@@ -1,6 +1,9 @@
#include <stdint.h>
#include <stdio.h>
+#include <tls.h>
+
+#if USE_TLS && HAVE___THREAD
#define AL 4096
struct foo
@@ -34,3 +37,5 @@ FCT (void)
return result;
}
+
+#endif