7 void *h1
= dlopen ("$ORIGIN/testobj6.so", RTLD_GLOBAL
|RTLD_LAZY
);
10 puts ("cannot open testobj6");
14 void *h2
= dlopen ("$ORIGIN/testobj2.so",
15 RTLD_GLOBAL
|RTLD_DEEPBIND
|RTLD_LAZY
);
18 puts ("cannot open testobj2");
24 void (*f
) (void) = dlsym (h2
, "p");
27 puts ("cannot find p");