blob: 56ed6b4c47d71c8a144398f19fa03b25ba948596 (
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 = syscall5(__NR_pwrite, fd, (long)buf, size, SYSCALL_LL(ofs));
CANCELPT_END;
return r;
}
LFS64(pwrite);
|