10 static const char modname1
[] = "tst-tlsmod5.so";
11 static const char modname2
[] = "tst-tlsmod6.so";
14 void *h1
= dlopen (modname1
, RTLD_LAZY
);
17 printf ("cannot open '%s': %s\n", modname1
, dlerror ());
20 void *h2
= dlopen (modname2
, RTLD_LAZY
);
23 printf ("cannot open '%s': %s\n", modname2
, dlerror ());
36 #include <support/test-driver.c>