| 3 | #include <lemon/system/filesystem.h> |
| 4 | |
| 5 | int lemon_open(const char* filename, int flags){ |
| 6 | return syscall(SYS_OPEN, (uintptr_t)filename, flags); |
| 7 | } |
| 8 | |
| 9 | void lemon_close(int fd){ |
| 10 | syscall(SYS_CLOSE, fd); |
nothing calls this directly
no outgoing calls
no test coverage detected