File tree Expand file tree Collapse file tree 7 files changed +19
-0
lines changed Expand file tree Collapse file tree 7 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -1317,6 +1317,7 @@ dirfd
13171317dirname
13181318dl_iterate_phdr
13191319dl_phdr_info
1320+ dlvsym
13201321drand48
13211322duplocale
13221323eaccess
Original file line number Diff line number Diff line change @@ -1928,6 +1928,7 @@ dirfd
19281928dirname
19291929dl_iterate_phdr
19301930dl_phdr_info
1931+ dlvsym
19311932drand48
19321933dup3
19331934duplocale
Original file line number Diff line number Diff line change @@ -592,6 +592,7 @@ ctime_r
592592dirname
593593dlinfo
594594dlmopen
595+ dlvsym
595596eaccess
596597endutxent
597598epoll_pwait2
Original file line number Diff line number Diff line change @@ -1282,6 +1282,7 @@ dirfd
12821282dirname
12831283dl_iterate_phdr
12841284dl_phdr_info
1285+ dlvsym
12851286dqblk
12861287drand48
12871288dup3
Original file line number Diff line number Diff line change @@ -5275,6 +5275,11 @@ extern "C" {
52755275 idx1 : c_ulong ,
52765276 idx2 : c_ulong ,
52775277 ) -> c_int ;
5278+ pub fn dlvsym (
5279+ handle : * mut c_void ,
5280+ symbol : * const c_char ,
5281+ version : * const c_char ,
5282+ ) -> * mut c_void ;
52785283}
52795284
52805285#[ link( name = "memstat" ) ]
Original file line number Diff line number Diff line change @@ -2686,6 +2686,11 @@ extern "C" {
26862686 new_value : * const crate :: itimerspec ,
26872687 old_value : * mut crate :: itimerspec ,
26882688 ) -> c_int ;
2689+ pub fn dlvsym (
2690+ handle : * mut c_void ,
2691+ symbol : * const c_char ,
2692+ version : * const c_char ,
2693+ ) -> * mut c_void ;
26892694
26902695 // Added in `NetBSD` 7.0
26912696 pub fn explicit_memset ( b : * mut c_void , c : c_int , len : size_t ) ;
Original file line number Diff line number Diff line change @@ -1287,6 +1287,11 @@ extern "C" {
12871287 extra_info : * mut * mut c_void ,
12881288 flags : c_int ,
12891289 ) -> c_int ;
1290+ pub fn dlvsym (
1291+ handle : * mut c_void ,
1292+ symbol : * const c_char ,
1293+ version : * const c_char ,
1294+ ) -> * mut c_void ;
12901295 pub fn malloc_trim ( __pad : size_t ) -> c_int ;
12911296 pub fn gnu_get_libc_release ( ) -> * const c_char ;
12921297 pub fn gnu_get_libc_version ( ) -> * const c_char ;
You can’t perform that action at this time.
0 commit comments