mirror of https://git.musl-libc.org/git/musl
committed by
Rich Felker
2 changed files with 9 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
#define _GNU_SOURCE |
|||
#include <unistd.h> |
|||
#include "syscall.h" |
|||
|
|||
ssize_t copy_file_range(int fd_in, off_t *off_in, int fd_out, off_t *off_out, size_t len, unsigned flags) |
|||
{ |
|||
return syscall(SYS_copy_file_range, fd_in, off_in, fd_out, off_out, len, flags); |
|||
} |
|||
Loading…
Reference in new issue