7 lines
67 B
C
7 lines
67 B
C
__thread int foo_var = 1;
|
|
|
|
int
|
|
_start (void)
|
|
{
|
|
return foo_var;
|
|
}
|