diff options
Diffstat (limited to 'elf/tst-array4.c')
-rw-r--r-- | elf/tst-array4.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/elf/tst-array4.c b/elf/tst-array4.c deleted file mode 100644 index ac3d4eb716..0000000000 --- a/elf/tst-array4.c +++ /dev/null @@ -1,18 +0,0 @@ -#include <dlfcn.h> - -#define main array1_main -#include "tst-array1.c" -#undef main - -int -main (void) -{ - void *handle = dlopen ("tst-array2dep.so", RTLD_LAZY); - - array1_main (); - - if (handle != NULL) - dlclose (handle); - - return 0; -} |