mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
9 lines
83 B
C
9 lines
83 B
C
__thread int yyy = 100;
|
|
extern __thread int zzz;
|
|
|
|
int
|
|
foo (void)
|
|
{
|
|
return zzz;
|
|
}
|