Sign in
nest-open-source
/
nest-cam
/
v366
/
glibc
/
refs/heads/main
/
.
/
elf
/
tst-tlsmod13.c
blob: e4e23af2d851aa038924969e907eabea5d427d33 [
file
] [
log
] [
blame
] [
edit
]
#include
<tls.h>
#if defined HAVE___THREAD && defined HAVE_TLS_MODEL_ATTRIBUTE
__thread
int
a
[
2
]
__attribute__
((
tls_model
(
"initial-exec"
)));
#else
int
a
[
2
];
#endif
int
foo
(
void
)
{
return
a
[
0
];
}