mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
254 B
8 lines
254 B
#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);
|
|
}
|
|
|