]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/tst-tlsmod13a.c
install.texi: Build was tested with binutils 2.41 (just released)
[thirdparty/glibc.git] / elf / tst-tlsmod13a.c
CommitLineData
541765b6 1__thread int b[2] __attribute__ ((tls_model ("initial-exec")));
541765b6
UD
2
3extern int foo (void);
4
5int
6bar (void)
7{
8 return foo () + b[0];
9}