]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-tls19mod2.c
ldbl-opt: Reuse test cases from misc/ that check long double
[thirdparty/glibc.git] / elf / tst-tls19mod2.c
CommitLineData
d26dfc60
MG
1static int __thread tbar __attribute__ ((tls_model ("initial-exec"))) = 666;
2
3void
4setter (int a)
5{
6 tbar = a;
7}
8
9int
10bar (void)
11{
12 return tbar;
13}