9 lines
91 B
C
9 lines
91 B
C
#include <pthread.h>
|
|
|
|
__thread const char *tls_var = "hello";
|
|
|
|
int main ()
|
|
{
|
|
return 0;
|
|
}
|