blob: 869b69f03b88ee0098cf88dfc2093c7ab28be7f7 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
ssize_t pwrite(int fd, const void *buf, size_t size, off_t ofs)
{
return syscall_cp(SYS_pwrite, fd, buf, size, __SYSCALL_LL_PRW(ofs));
}