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
1317
1317
dirname
1318
1318
dl_iterate_phdr
1319
1319
dl_phdr_info
1320
+ dlvsym
1320
1321
drand48
1321
1322
duplocale
1322
1323
eaccess
Original file line number Diff line number Diff line change @@ -1935,6 +1935,7 @@ dirfd
1935
1935
dirname
1936
1936
dl_iterate_phdr
1937
1937
dl_phdr_info
1938
+ dlvsym
1938
1939
drand48
1939
1940
dup3
1940
1941
duplocale
Original file line number Diff line number Diff line change @@ -592,6 +592,7 @@ ctime_r
592
592
dirname
593
593
dlinfo
594
594
dlmopen
595
+ dlvsym
595
596
eaccess
596
597
endutxent
597
598
epoll_pwait2
Original file line number Diff line number Diff line change @@ -1282,6 +1282,7 @@ dirfd
1282
1282
dirname
1283
1283
dl_iterate_phdr
1284
1284
dl_phdr_info
1285
+ dlvsym
1285
1286
dqblk
1286
1287
drand48
1287
1288
dup3
Original file line number Diff line number Diff line change @@ -5361,6 +5361,11 @@ extern "C" {
5361
5361
idx1 : c_ulong ,
5362
5362
idx2 : c_ulong ,
5363
5363
) -> c_int ;
5364
+ pub fn dlvsym (
5365
+ handle : * mut c_void ,
5366
+ symbol : * const c_char ,
5367
+ version : * const c_char ,
5368
+ ) -> * mut c_void ;
5364
5369
}
5365
5370
5366
5371
#[ link( name = "memstat" ) ]
Original file line number Diff line number Diff line change @@ -2687,6 +2687,11 @@ extern "C" {
2687
2687
new_value : * const crate :: itimerspec ,
2688
2688
old_value : * mut crate :: itimerspec ,
2689
2689
) -> c_int ;
2690
+ pub fn dlvsym (
2691
+ handle : * mut c_void ,
2692
+ symbol : * const c_char ,
2693
+ version : * const c_char ,
2694
+ ) -> * mut c_void ;
2690
2695
2691
2696
// Added in `NetBSD` 7.0
2692
2697
pub fn explicit_memset ( b : * mut c_void , c : c_int , len : size_t ) ;
Original file line number Diff line number Diff line change @@ -1285,6 +1285,11 @@ extern "C" {
1285
1285
extra_info : * mut * mut c_void ,
1286
1286
flags : c_int ,
1287
1287
) -> c_int ;
1288
+ pub fn dlvsym (
1289
+ handle : * mut c_void ,
1290
+ symbol : * const c_char ,
1291
+ version : * const c_char ,
1292
+ ) -> * mut c_void ;
1288
1293
pub fn malloc_trim ( __pad : size_t ) -> c_int ;
1289
1294
pub fn gnu_get_libc_release ( ) -> * const c_char ;
1290
1295
pub fn gnu_get_libc_version ( ) -> * const c_char ;
You can’t perform that action at this time.
0 commit comments