Skip to content

Commit

Permalink
Add sendfile syscall. Corresponds to llvm-project-deluge/f0fb35f571c4
Browse files Browse the repository at this point in the history
  • Loading branch information
pizlonator committed Jul 14, 2024
1 parent d89a258 commit 5aca87c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linux/sendfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

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);
return zsys_sendfile(out_fd, in_fd, ofs, count);
}

0 comments on commit 5aca87c

Please sign in to comment.