8 void *h
= dlopen ("tst-tlsmod15a.so", RTLD_NOW
);
11 puts ("unexpectedly succeeded to open tst-tlsmod15a.so");
15 h
= dlopen ("tst-tlsmod15b.so", RTLD_NOW
);
18 puts ("failed to open tst-tlsmod15b.so");
22 int (*fp
) (void) = (int (*) (void)) dlsym (h
, "in_dso");
25 puts ("cannot find in_dso");
32 #define TEST_FUNCTION do_test ()
33 #include "../test-skeleton.c"