| 19 | } |
| 20 | |
| 21 | off_t lemon_seek(int fd, off_t offset, int whence){ |
| 22 | return syscall(SYS_LSEEK, fd, offset, whence); |
| 23 | } |
| 24 | |
| 25 | int lemon_readdir(int fd, uint64_t count, lemon_dirent_t* dirent){ |
| 26 | return syscall(SYS_READDIR, fd, (uintptr_t)dirent, count); |
nothing calls this directly
no outgoing calls
no test coverage detected