8 lines
83 B
C
8 lines
83 B
C
__thread int yyy = 100;
|
|
extern __thread int zzz;
|
|
|
|
int
|
|
foo (void)
|
|
{
|
|
return zzz;
|
|
}
|