| 15 | } |
| 16 | |
| 17 | int lemon_write(int fd, const void* buffer, size_t count){ |
| 18 | return syscall(SYS_WRITE, fd, (uintptr_t)buffer, count); |
| 19 | } |
| 20 | |
| 21 | off_t lemon_seek(int fd, off_t offset, int whence){ |
| 22 | return syscall(SYS_LSEEK, fd, offset, whence); |
nothing calls this directly
no outgoing calls
no test coverage detected