refining vfs

This commit is contained in:
2026-07-10 07:46:46 -05:00
parent 4d98d73f5e
commit 032a35206a
13 changed files with 304 additions and 277 deletions

View File

@@ -56,7 +56,7 @@ static int32_t sys_read(int fd, void* buf, size_t count) {
}
static int32_t sys_open(const char* filename, int flags) {
return open(filename, flags);
return vfs_open(filename, flags);
}
static int32_t sys_close(int fd) {