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 783ddd8 + 82f0707 commit 55a5eb8Copy full SHA for 55a5eb8
src/unix/linux_like/linux/gnu/mod.rs
@@ -1198,6 +1198,14 @@ extern "C" {
1198
pub fn ntp_adjtime(buf: *mut timex) -> ::c_int;
1199
#[link_name = "ntp_gettimex"]
1200
pub fn ntp_gettime(buf: *mut ntptimeval) -> ::c_int;
1201
+ pub fn copy_file_range(
1202
+ fd_in: ::c_int,
1203
+ off_in: *mut ::off64_t,
1204
+ fd_out: ::c_int,
1205
+ off_out: *mut ::off64_t,
1206
+ len: ::size_t,
1207
+ flags: ::c_uint,
1208
+ ) -> ::ssize_t;
1209
}
1210
1211
#[link(name = "util")]
0 commit comments