diff options
Diffstat (limited to 'elf/reldep8.c')
-rw-r--r-- | elf/reldep8.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/elf/reldep8.c b/elf/reldep8.c new file mode 100644 index 0000000000..90009a5609 --- /dev/null +++ b/elf/reldep8.c @@ -0,0 +1,16 @@ +#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 (); +} |