aboutsummaryrefslogtreecommitdiff
path: root/src/linux/copy_file_range.c
blob: 8c1076b31334c29e92c41c910741cd524d35fb92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif