summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornonaka <nonaka@NetBSD.org>2011-06-25 05:45:10 +0000
committernonaka <nonaka@NetBSD.org>2011-06-25 05:45:10 +0000
commit07fac769f5abdca4765e54307805a16e2e3ffb14 (patch)
tree1c67ea3e5b6fd5d8757cfc21270ac23fc8066c0d /include
parent5f70c711cdde438a2dabe184f7ef9fa760cc9b6e (diff)
PR/45015: ld.elf_so: support ELF symbol versioning
Applied latest patch.
Diffstat (limited to 'include')
-rw-r--r--include/dlfcn.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index d50fe64c5ac..a198c706ba8 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -1,4 +1,4 @@
-/* $NetBSD: dlfcn.h,v 1.22 2010/12/24 12:41:42 skrll Exp $ */
+/* $NetBSD: dlfcn.h,v 1.23 2011/06/25 05:45:11 nonaka Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -55,6 +55,8 @@ void *dlsym(void * __restrict, const char * __restrict);
int dladdr(const void * __restrict, Dl_info * __restrict);
int dlctl(void *, int, void *);
int dlinfo(void *, int, void *);
+void *dlvsym(void * __restrict, const char * __restrict,
+ const char * __restrict);
#endif
__aconst char *dlerror(void);
__END_DECLS