add splice and vmsplice syscalls
[musl] / src / linux / vmsplice.c
diff --git a/src/linux/vmsplice.c b/src/linux/vmsplice.c
new file mode 100644 (file)
index 0000000..ebf13ee
--- /dev/null
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <fcntl.h>
+#include "syscall.h"
+
+ssize_t vmsplice(int fd, const struct iovec *iov, size_t cnt, unsigned flags)
+{
+       return syscall(SYS_vmsplice, fd, iov, cnt, flags);
+}