diff options
| author | Alexander Kabaev <kan@FreeBSD.org> | 2005-12-18 19:43:33 +0000 |
|---|---|---|
| committer | Alexander Kabaev <kan@FreeBSD.org> | 2005-12-18 19:43:33 +0000 |
| commit | 0eb88f20298d056bf09b52ec2d84d3662b8fd152 (patch) | |
| tree | 0d48e9fa3e1a8d20651242fc849efd6ba9f69557 /lib | |
| parent | 9d51867579ac97c7da8600ce09faf79a6dad5ca6 (diff) | |
Notes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libc/gen/dlfcn.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/libc/gen/dlfcn.c b/lib/libc/gen/dlfcn.c index be58e28c5cdd..e0a8233d5fa8 100644 --- a/lib/libc/gen/dlfcn.c +++ b/lib/libc/gen/dlfcn.c @@ -104,6 +104,15 @@ dlsym(void * __restrict handle, const char * __restrict name) return NULL; } +#pragma weak dlvsym +void * +dlvsym(void * __restrict handle, const char * __restrict name, + const char * __restrict version) +{ + _rtld_error(sorry); + return NULL; +} + #pragma weak dlinfo int dlinfo(void * __restrict handle, int request, void * __restrict p) |
