7 void *h
= dlopen ("tst-tlsmod15a.so", RTLD_NOW
);
10 puts ("unexpectedly succeeded to open tst-tlsmod15a.so");
14 h
= dlopen ("tst-tlsmod15b.so", RTLD_NOW
);
17 puts ("failed to open tst-tlsmod15b.so");
21 int (*fp
) (void) = (int (*) (void)) dlsym (h
, "in_dso");
24 puts ("cannot find in_dso");
31 #define TEST_FUNCTION do_test ()
32 #include "../test-skeleton.c"