diff options
Diffstat (limited to 'src/unistd/pwrite.c')
-rw-r--r-- | src/unistd/pwrite.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/pwrite.c b/src/unistd/pwrite.c new file mode 100644 index 0000000..869b69f --- /dev/null +++ b/src/unistd/pwrite.c @@ -0,0 +1,7 @@ +#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)); +} |