57174444
0b44a031
aa398f56
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); }