update syscalls with off_t arguments to handle argument alignment, if needed
[musl] / src / unistd / pwrite.c
1 #include <unistd.h>
2 #include "syscall.h"
3 #include "libc.h"
4
5 ssize_t pwrite(int fd, const void *buf, size_t size, off_t ofs)
6 {
7         return syscall_cp(SYS_pwrite, fd, buf, size, __SYSCALL_LL_O(ofs));
8 }
9
10 LFS64(pwrite);