blob: d888a2c7a1fc6a5271a6bbe934cc5ef619583870 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
#include "libc.h"
ssize_t pread(int fd, void* buf, size_t size, off_t ofs) {
return syscall_cp(SYS_pread, fd, buf, size, __SYSCALL_LL_O(ofs));
}
LFS64(pread);