mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
3ce1f29594
Make several tool features mandatory and simplify the code.
10 lines
136 B
C
10 lines
136 B
C
#include "tst-tls10.h"
|
|
|
|
__thread int mod15b_var __attribute__((tls_model("initial-exec")));
|
|
|
|
int
|
|
in_dso (void)
|
|
{
|
|
return mod15b_var;
|
|
}
|