Remove i486 subdirectory
[glibc.git] / elf / tst-tls19mod3.c
blobe7b28016b3b45097b8d763b3f80f173ade07f0d5
1 #include <stdio.h>
3 static int __thread tbaz __attribute__ ((tls_model ("local-dynamic"))) = 42;
5 void
6 setter2 (int a)
8 tbaz = a;
11 int
12 baz (void)
14 printf ("&tbaz=%p\n", &tbaz);
15 return tbaz;