| 11 | } |
| 12 | |
| 13 | int lemon_read(int fd, void* buffer, size_t count){ |
| 14 | return syscall(SYS_READ, fd, (uintptr_t)buffer, count); |
| 15 | } |
| 16 | |
| 17 | int lemon_write(int fd, const void* buffer, size_t count){ |
| 18 | return syscall(SYS_WRITE, fd, (uintptr_t)buffer, count); |
nothing calls this directly
no outgoing calls
no test coverage detected