LibC: Fix mmap()

mmap() did not pass fildes to the syscall structure.
This commit is contained in:
Bananymous 2023-09-29 17:24:21 +03:00
parent db5d6a7f80
commit d54c6b7f6b
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ void* mmap(void* addr, size_t len, int prot, int flags, int fildes, off_t off)
.len = len,
.prot = prot,
.flags = flags,
.fildes = fildes,
.off = off
};
long ret = syscall(SYS_MMAP, &args);