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