blob: f878bb63b80d7bd6d90d9c41ce8477a737a11e8f (
plain) (
tree)
|
|
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
ssize_t pwrite(int fd, const void *buf, size_t size, off_t ofs)
{
ssize_t r;
CANCELPT_BEGIN;
r = syscall(SYS_pwrite, fd, buf, size, __SYSCALL_LL(ofs));
CANCELPT_END;
return r;
}
LFS64(pwrite);
|