mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 06:10:06 +00:00
c7738d0822
Remove tls.h includes where they are not needed.
10 lines
132 B
C
10 lines
132 B
C
__thread int b[2] __attribute__ ((tls_model ("initial-exec")));
|
|
|
|
extern int foo (void);
|
|
|
|
int
|
|
bar (void)
|
|
{
|
|
return foo () + b[0];
|
|
}
|