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