update main #1

Merged
Sinipelto merged 240 commits from Bananymous/banan-os:main into main 2023-11-20 13:20:51 +02:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit d54c6b7f6b - Show all commits

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);