Further harden glibc malloc metadata against 1-byte overflows.
[glibc.git] / elf / tst-tlsmod12.c
blobd0be51891ad8f22b880e6fe72a951b1d4a8c90d8
1 #include "tst-tls10.h"
3 extern __thread struct A a2 __attribute__((tls_model("initial-exec")));
5 void
6 check1 (void)
8 if (a1.a != 4 || a1.b != 5 || a1.c != 6)
9 abort ();
10 if (a2.a != 7 || a2.b != 8 || a2.c != 9)
11 abort ();