1#include <unistd.h> 2#include "syscall.h" 3 4ssize_t pwrite(int fd, const void *buf, size_t size, off_t ofs) 5{ 6 return syscall_cp(SYS_pwrite, fd, buf, size, __SYSCALL_LL_PRW(ofs)); 7}