summaryrefslogtreecommitdiff
path: root/dynamic/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'dynamic/test.c')
-rw-r--r--dynamic/test.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/dynamic/test.c b/dynamic/test.c
deleted file mode 100644
index c633cfd7..00000000
--- a/dynamic/test.c
+++ /dev/null
@@ -1,27 +0,0 @@
-#include <stdio.h>
-#include <dlfcn.h>
-#include <unistd.h>
-
-#include <security/pam_appl.h>
-#include <security/pam_misc.h>
-
-int main(int argc, char **argv)
-{
- void *handle;
-
- handle = dlopen("./pam.so", RTLD_NOW);
- if (handle == NULL) {
- fprintf(stderr, "failed to load pam.so: %s\n", dlerror());
- exit(1);
- }
-
- /* handle->XXX points to each of the PAM functions */
-
-
- if (dlclose(handle)) {
- fprintf(stderr, "failed to unload pam.so: %s\n", dlerror());
- exit(1);
- }
-
- exit(0);
-}