summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/lt_path.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/lt_path.c b/src/core/lt_path.c
index b0335de..37fec79 100644
--- a/src/core/lt_path.c
+++ b/src/core/lt_path.c
@@ -402,3 +402,9 @@ struct lt_modctx * lt_dlopenext(const char * module)
lt_sunlock(0);
return modctx;
}
+
+struct lt_modctx * lt_dlopenadvise(const char * module, struct lt_modctl * modctl)
+{
+ (void)modctl;
+ return lt_dlopenext(module);
+}