2018-12-28 16:25:28 +01:00

8 lines
67 B
C

__thread int foo_var = 1;
int
_start (void)
{
return foo_var;
}