diff options
Diffstat (limited to 'src/unistd/pread.c')
-rw-r--r-- | src/unistd/pread.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/pread.c b/src/unistd/pread.c new file mode 100644 index 0000000..b03fb0a --- /dev/null +++ b/src/unistd/pread.c @@ -0,0 +1,7 @@ +#include <unistd.h> +#include "syscall.h" + +ssize_t pread(int fd, void *buf, size_t size, off_t ofs) +{ + return syscall_cp(SYS_pread, fd, buf, size, __SYSCALL_LL_PRW(ofs)); +} |