summaryrefslogtreecommitdiff
path: root/kernel/syscalls/pwrite.c
blob: b251dbb3ca844d9257e483ca990ab980d7c08c9d (plain)
1
2
3
4
5
6
#include <fs/vfs.h>
#include <syscalls.h>

int syscall_pwrite(int fd, const char *buf, size_t count, size_t offset) {
  return vfs_pwrite(fd, (char *)buf, count, offset);
}