bits/syscall.h: add landlock syscalls from linux v5.13
[musl.git] / src / linux / sendfile.c
blob9afe6dd61c203122e671ee0e5743d4b022834485
1 #include <sys/sendfile.h>
2 #include "syscall.h"
4 ssize_t sendfile(int out_fd, int in_fd, off_t *ofs, size_t count)
6 return syscall(SYS_sendfile, out_fd, in_fd, ofs, count);
9 weak_alias(sendfile, sendfile64);