Further harden glibc malloc metadata against 1-byte overflows.
[glibc.git] / elf / tst-tls19mod2.c
blobcae702f67c334ea881bfd55915882ba391909f8b
1 static int __thread tbar __attribute__ ((tls_model ("initial-exec"))) = 666;
3 void
4 setter (int a)
6 tbar = a;
9 int
10 bar (void)
12 return tbar;