diff options
Diffstat (limited to 'test/dlopen/test3.c')
-rw-r--r-- | test/dlopen/test3.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/dlopen/test3.c b/test/dlopen/test3.c deleted file mode 100644 index 2f2dfc65c..000000000 --- a/test/dlopen/test3.c +++ /dev/null @@ -1,13 +0,0 @@ -#include <fcntl.h> -#include <stdlib.h> -#include <stdio.h> -#include <dlfcn.h> - -extern int dltest(const char *s); - -int main(int argc, char **argv) -{ - dltest("hello world!"); - return EXIT_SUCCESS; -} - |