summaryrefslogtreecommitdiff
path: root/src/linux
diff options
context:
space:
mode:
authorÁrni Dagur <arni@dagur.eu>2019-08-19 23:41:14 +0000
committerRich Felker <dalias@aerifal.cx>2019-08-23 20:24:06 -0400
commitf76e183111bc4491ee575c3e2fcc793412acff4e (patch)
tree310bfc7e3b28c5bdc886631a6a90a0cae9373f67 /src/linux
parent6ad514e4e278f0c3b18eb2db1d45638c9af1c07f (diff)
downloadmusl-f76e183111bc4491ee575c3e2fcc793412acff4e.tar.gz
add copy_file_range system call wrapper
Diffstat (limited to 'src/linux')
-rw-r--r--src/linux/copy_file_range.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/copy_file_range.c b/src/linux/copy_file_range.c
new file mode 100644
index 00000000..dd4b1333
--- /dev/null
+++ b/src/linux/copy_file_range.c
@@ -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);
+}