diff options
Diffstat (limited to 'elf/unload6.c')
-rw-r--r-- | elf/unload6.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/elf/unload6.c b/elf/unload6.c deleted file mode 100644 index 1efc7eb841..0000000000 --- a/elf/unload6.c +++ /dev/null @@ -1,30 +0,0 @@ -#include <dlfcn.h> -#include <stdio.h> - -int -main (void) -{ - void *h = dlopen ("unload6mod1.so", RTLD_LAZY); - if (h == NULL) - { - puts ("dlopen unload6mod1.so failed"); - return 1; - } - - int (*fn) (int); - fn = dlsym (h, "foo"); - if (fn == NULL) - { - puts ("dlsym failed"); - return 1; - } - - int val = fn (16); - if (val != 24) - { - printf ("foo returned %d != 24\n", val); - return 1; - } - - return 0; -} |