elf: Make glibc.rtld.enable_secure ignore alias environment variables
[glibc.git] / elf / tst-tls17.c
blobc2a972d3c4b9ce8585921ca344e874b7d689c24f
1 #include <dlfcn.h>
2 #include <stdlib.h>
3 #include <stdio.h>
5 static int
6 do_test (void)
8 void *h = dlopen ("tst-tlsmod17b.so", RTLD_LAZY);
9 if (h == NULL)
11 puts ("unexpectedly failed to open tst-tlsmod17b.so");
12 exit (1);
15 int (*fp) (void) = (int (*) (void)) dlsym (h, "tlsmod17b");
16 if (fp == NULL)
18 puts ("cannot find tlsmod17b");
19 exit (1);
22 if (fp ())
23 exit (1);
25 return 0;
28 #include <support/test-driver.c>