aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-audit9.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-audit9.c')
-rw-r--r--elf/tst-audit9.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/elf/tst-audit9.c b/elf/tst-audit9.c
deleted file mode 100644
index b9de1bf5a2..0000000000
--- a/elf/tst-audit9.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <dlfcn.h>
-
-static int
-do_test (void)
-{
- void *h = dlopen("$ORIGIN/tst-auditmod9b.so", RTLD_LAZY);
- int (*fp)(void) = dlsym(h, "f");
- return fp() - 1;
-}
-
-#include <support/test-driver.c>