xref: /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.threads/tls-shared.c (revision 58fbf5d6aa35e3d66f2c32c61d2f38824a990e85)
1 __thread int i_tls = 1;
2 int foo ()
3 {
4   return i_tls;
5 }
6 
7