wireup linux/name_to_handle_at and name_to_handle_at syscalls
[musl.git] / src / linux / splice.c
blob78b6220d8e615a29b385a5fdb80f41dc75588ced
1 #define _GNU_SOURCE
2 #include <fcntl.h>
3 #include "syscall.h"
5 ssize_t splice(int fd_in, off_t *off_in, int fd_out, off_t *off_out, size_t len, unsigned flags)
7 return syscall(SYS_splice, fd_in, off_in, fd_out, off_out, len, flags);