summaryrefslogtreecommitdiff
path: root/userland/libc/unistd/pwrite.c
blob: c777865a3ec280aa965b08778f5cf982cbc6f30c (plain)
1
2
3
4
5
6
#include <syscall.h>
#include <unistd.h>

int pwrite(int fd, const char *buf, size_t count, size_t offset) {
  return syscall(SYS_PWRITE, fd, buf, count, offset, 0);
}