glibc/elf/tst-tlsmod16b.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
115 B
C

extern __thread int tlsvar __attribute__((tls_model("initial-exec")));
void *
in_dso (void)
{
return &tlsvar;
}