We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 02887ba + 749ffed commit 5d3421eCopy full SHA for 5d3421e
src/unix/bsd/netbsdlike/netbsd/mod.rs
@@ -403,6 +403,16 @@ s! {
403
pub p_align: Elf64_Xword,
404
}
405
406
+ pub struct Aux32Info {
407
+ pub a_type: Elf32_Word,
408
+ pub a_v: Elf32_Word,
409
+ }
410
+
411
+ pub struct Aux64Info {
412
+ pub a_type: Elf64_Word,
413
+ pub a_v: Elf64_Xword,
414
415
416
// link.h
417
418
pub struct dl_phdr_info {
@@ -2074,6 +2084,10 @@ extern "C" {
2074
2084
data: *mut ::c_void,
2075
2085
) -> ::c_int;
2076
2086
2087
+ // dlfcn.h
2088
2089
+ pub fn _dlauxinfo() -> *mut ::c_void;
2090
2077
2091
pub fn iconv_open(tocode: *const ::c_char, fromcode: *const ::c_char) -> iconv_t;
2078
2092
pub fn iconv(
2079
2093
cd: iconv_t,
0 commit comments