summaryrefslogtreecommitdiff
path: root/ext/dl/eg/test1.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/dl/eg/test1.c')
-rw-r--r--ext/dl/eg/test1.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/ext/dl/eg/test1.c b/ext/dl/eg/test1.c
deleted file mode 100644
index fc7b1b2cc2..0000000000
--- a/ext/dl/eg/test1.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <dlfcn.h>
-
-test1()
-{
- void *obj;
- void (*proc)();
-
- obj = dlopen("test", 1);
- proc = (void (*)())dlsym(obj, "test");
- proc();
-}