summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorAlexander Kabaev <kan@FreeBSD.org>2003-02-13 17:47:44 +0000
committerAlexander Kabaev <kan@FreeBSD.org>2003-02-13 17:47:44 +0000
commit42d206e97595bddcee95a76e4ab61d0cfd90be3b (patch)
tree47a1e438dc6e9a6ec4b8cfbf67e72cbf01879f87 /lib/libc
parent92b0ec083202bad8b737ec44069c52da0bfddbaa (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/gen/dlfcn.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libc/gen/dlfcn.c b/lib/libc/gen/dlfcn.c
index ff1d9006c860..ed9bf85f7278 100644
--- a/lib/libc/gen/dlfcn.c
+++ b/lib/libc/gen/dlfcn.c
@@ -103,3 +103,11 @@ dlsym(void * __restrict handle, const char * __restrict name)
_rtld_error(sorry);
return NULL;
}
+
+#pragma weak dlinfo
+int
+dlinfo(void * __restrict handle, int request, void * __restrict p)
+{
+ _rtld_error(sorry);
+ return NULL;
+}