summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2025-06-20 06:15:13 +0000
committermidipix <writeonce@midipix.org>2025-06-20 06:15:13 +0000
commit1accaeff874ee8676a13ba54b0381065bc33eac3 (patch)
tree1df9b93f3e791aa6b03c99961d41e7f9270dd460 /src
parent6e95252bc1d2ed235d9e86bd99973e3da0739a1c (diff)
downloadsltdl-1accaeff874ee8676a13ba54b0381065bc33eac3.tar.bz2
sltdl-1accaeff874ee8676a13ba54b0381065bc33eac3.tar.xz
Added lt_dlloader_add() and lt_dlloader_find() as stubs.
Diffstat (limited to 'src')
-rw-r--r--src/core/lt_path.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/core/lt_path.c b/src/core/lt_path.c
index c4e4793..c945b7f 100644
--- a/src/core/lt_path.c
+++ b/src/core/lt_path.c
@@ -576,3 +576,15 @@ int lt_dlforeachfile(
return 0;
}
+
+int lt_dlloader_add(const struct lt_dlentry * ldr)
+{
+ (void)ldr;
+ return -1;
+}
+
+const struct lt_dlentry * lt_dlloader_find(const char * ldrname)
+{
+ (void)ldrname;
+ return 0;
+}