We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89a8e04 commit 33dd3b9Copy full SHA for 33dd3b9
src/unix/linux_like/linux/gnu/mod.rs
@@ -978,6 +978,7 @@ extern "C" {
978
needle: *const ::c_void,
979
needlelen: ::size_t,
980
) -> *mut ::c_void;
981
+ pub fn getauxval(type_: ::c_ulong) -> ::c_ulong;
982
}
983
984
#[link(name = "util")]
@@ -1031,7 +1032,6 @@ extern "C" {
1031
1032
pub fn sched_getcpu() -> ::c_int;
1033
pub fn mallinfo() -> ::mallinfo;
1034
pub fn malloc_usable_size(ptr: *mut ::c_void) -> ::size_t;
- pub fn getauxval(type_: ::c_ulong) -> ::c_ulong;
1035
#[cfg_attr(target_os = "netbsd", link_name = "__getpwent_r50")]
1036
#[cfg_attr(target_os = "solaris", link_name = "__posix_getpwent_r")]
1037
pub fn getpwent_r(
0 commit comments