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 @@ -1928,6 +1928,7 @@ dirfd
1928
1928
dirname
1929
1929
dl_iterate_phdr
1930
1930
dl_phdr_info
1931
+ dlvsym
1931
1932
drand48
1932
1933
dup3
1933
1934
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 @@ -5275,6 +5275,11 @@ extern "C" {
5275
5275
idx1 : c_ulong ,
5276
5276
idx2 : c_ulong ,
5277
5277
) -> 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 ;
5278
5283
}
5279
5284
5280
5285
#[ link( name = "memstat" ) ]
Original file line number Diff line number Diff line change @@ -2686,6 +2686,11 @@ extern "C" {
2686
2686
new_value : * const crate :: itimerspec ,
2687
2687
old_value : * mut crate :: itimerspec ,
2688
2688
) -> 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 ;
2689
2694
2690
2695
// Added in `NetBSD` 7.0
2691
2696
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" {
1287
1287
extra_info : * mut * mut c_void ,
1288
1288
flags : c_int ,
1289
1289
) -> 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 ;
1290
1295
pub fn malloc_trim ( __pad : size_t ) -> c_int ;
1291
1296
pub fn gnu_get_libc_release ( ) -> * const c_char ;
1292
1297
pub fn gnu_get_libc_version ( ) -> * const c_char ;
You can’t perform that action at this time.
0 commit comments