aboutsummaryrefslogtreecommitdiff
path: root/elf/nodlopen.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/nodlopen.c')
-rw-r--r--elf/nodlopen.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/elf/nodlopen.c b/elf/nodlopen.c
deleted file mode 100644
index 642bdb3011..0000000000
--- a/elf/nodlopen.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <dlfcn.h>
-#include <stdio.h>
-
-int
-main (void)
-{
- if (dlopen ("nodlopenmod.so", RTLD_LAZY) != NULL)
- {
- puts ("opening \"nodlopenmod.so\" succeeded, FAIL");
- return 1;
- }
-
- puts ("opening \"nodlopenmod.so\" failed, OK");
- return 0;
-}