]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/tst-tlsmod13a.c
powerpc: Fix build of wcscpy with --disable-multi-arch
[thirdparty/glibc.git] / elf / tst-tlsmod13a.c
1 __thread int b[2] __attribute__ ((tls_model ("initial-exec")));
2
3 extern int foo (void);
4
5 int
6 bar (void)
7 {
8 return foo () + b[0];
9 }