blob: ca3765762274f3b3506239377ecf72091f5b948b [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));
}
weak_alias(pwrite, pwrite64);