Add sysdeps/ieee754/soft-fp.
[glibc.git] / elf / tst-dlmopen3.c
blob81675077847cc95d8a655e4c2a0b2f4e001f489a
1 #include <dlfcn.h>
2 #include <stdio.h>
5 static int
6 do_test (void)
8 void *h = dlmopen (LM_ID_NEWLM, "$ORIGIN/tst-dlmopen1mod.so", RTLD_LAZY);
9 if (h == NULL)
11 printf ("cannot get handle for %s: %s\n",
12 "tst-dlmopen1mod.so", dlerror ());
13 return 1;
16 /* Do not unload. */
18 return 0;
21 #include <support/test-driver.c>