summaryrefslogtreecommitdiff
path: root/src/linux/sendfile.c
blob: fc1577d34330fcf10a7efdfa79b8b03bb6eb080b (plain) (blame)
1
2
3
4
5
6
7
#include <sys/sendfile.h>
#include "syscall.h"

ssize_t sendfile(int out_fd, int in_fd, off_t *ofs, size_t count)
{
	return syscall(SYS_sendfile, out_fd, in_fd, ofs, count);
}