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.
1 parent 703c2db commit 0908643Copy full SHA for 0908643
src/unix/linux_like/linux/musl/mod.rs
@@ -927,6 +927,13 @@ extern "C" {
927
flags: c_int,
928
) -> ssize_t;
929
pub fn getauxval(type_: c_ulong) -> c_ulong;
930
+ pub fn renameat2(
931
+ oldfd: c_int,
932
+ old: *const c_char,
933
+ newfd: c_int,
934
+ new: *const c_char,
935
+ flags: c_uint,
936
+ ) -> c_int;
937
938
// Added in `musl` 1.1.20
939
pub fn explicit_bzero(s: *mut c_void, len: size_t);
0 commit comments