remove largish unused field from pthread structure
[musl] / src / linux / sendfile.c
index bfbc40a..d63f419 100644 (file)
@@ -1,10 +1,10 @@
-#include <unistd.h>
+#include <sys/sendfile.h>
 #include "syscall.h"
 #include "libc.h"
 
 ssize_t sendfile(int out_fd, int in_fd, off_t *ofs, size_t count)
 {
-       return syscall4(__NR_sendfile, out_fd, in_fd, (long)ofs, count);
+       return syscall(SYS_sendfile, out_fd, in_fd, ofs, count);
 }
 
 LFS64(sendfile);