glibc/elf/tst-tlsmod13.c
Siddhesh Poyarekar c7738d0822 Don't include tls.h in test cases
Remove tls.h includes where they are not needed.
2013-10-18 19:45:36 +05:30

8 lines
99 B
C

__thread int a[2] __attribute__ ((tls_model ("initial-exec")));
int
foo (void)
{
return a[0];
}