| 7 | } |
| 8 | |
| 9 | void lemon_close(int fd){ |
| 10 | syscall(SYS_CLOSE, fd); |
| 11 | } |
| 12 | |
| 13 | int lemon_read(int fd, void* buffer, size_t count){ |
| 14 | return syscall(SYS_READ, fd, (uintptr_t)buffer, count); |
nothing calls this directly
no outgoing calls
no test coverage detected