New test to expose erroneous negative sign on logb(1) (bug 887).
[glibc.git] / elf / tst-relsort1.c
blob972100c0e96c35df5f1f103f51ea68504e16f855
1 #include <dlfcn.h>
2 #include <stdio.h>
5 static int
6 do_test ()
8 const char lib[] = "$ORIGIN/tst-relsort1mod1.so";
9 void *h = dlopen (lib, RTLD_NOW);
10 if (h == NULL)
12 puts (dlerror ());
13 return 1;
15 return 0;
18 #define TEST_FUNCTION do_test ()
19 #include "../test-skeleton.c"