mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
0cb01df558
Change-Id: I7a413a81d33762f3cb1e8c67883d1e616f83d0e9 Reviewed-on: https://review.haiku-os.org/c/1536 Reviewed-by: Alex von Gluck IV <kallisti5@unixzen.com>
9 lines
83 B
C
9 lines
83 B
C
__thread int yyy = 100;
|
|
extern __thread int zzz;
|
|
|
|
int
|
|
foo (void)
|
|
{
|
|
return zzz;
|
|
}
|