2021-04-28 08:27:22 +02:00

9 lines
91 B
C

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