9 void* dl
= dlopen ("tst-tls19mod1.so", RTLD_LAZY
| RTLD_GLOBAL
);
12 printf ("Error loading tst-tls19mod1.so: %s\n", dlerror ());
16 int (*fn
) (void) = dlsym (dl
, "foo");
19 printf("Error obtaining symbol foo\n");
26 #include <support/test-driver.c>