diff options
Diffstat (limited to 'elf/reldep8.c')
-rw-r--r-- | elf/reldep8.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/elf/reldep8.c b/elf/reldep8.c deleted file mode 100644 index 90009a5609..0000000000 --- a/elf/reldep8.c +++ /dev/null @@ -1,16 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <dlfcn.h> - -int -main (void) -{ - void *handle = dlopen ("reldep8mod3.so", RTLD_LAZY); - if (handle == NULL) - { - printf ("%s\n", dlerror ()); - exit (1); - } - dlclose (handle); - abort (); -} |