9 lines
91 B
C
Raw Normal View History

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