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 2bafdcf commit 272fd47Copy full SHA for 272fd47
libc-test/semver/linux-musl.txt
@@ -33,6 +33,7 @@ aio_suspend
33
aio_write
34
aiocb
35
clock_adjtime
36
+copy_file_range
37
ctermid
38
explicit_bzero
39
futimes
src/unix/linux_like/linux/musl/mod.rs
@@ -773,6 +773,15 @@ extern "C" {
773
774
pub fn dirname(path: *mut ::c_char) -> *mut ::c_char;
775
pub fn basename(path: *mut ::c_char) -> *mut ::c_char;
776
+
777
+ pub fn copy_file_range(
778
+ fd_in: ::c_int,
779
+ off_in: *mut ::off64_t,
780
+ fd_out: ::c_int,
781
+ off_out: *mut ::off64_t,
782
+ len: ::size_t,
783
+ flags: ::c_uint,
784
+ ) -> ::ssize_t;
785
}
786
787
cfg_if! {
0 commit comments