Mention IFUNC enhancements to testsuite in NEWS.
[platform/upstream/glibc.git] / elf / tst-tlsmod13.c
1 #include <tls.h>
2
3 __thread int a[2] __attribute__ ((tls_model ("initial-exec")));
4
5 int
6 foo (void)
7 {
8   return a[0];
9 }