diff options
author | Anton Kling <anton@kling.gg> | 2024-03-25 21:02:58 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-03-25 21:04:10 +0100 |
commit | 3deb2df8e62a5f0a5535ee734a5aa13b0959f53f (patch) | |
tree | af8841076c95ae3de7dcd4a006026be2607a0fbf /kernel/syscalls | |
parent | 6baa733f5682f660143c851a635a53dc2c2df7ae (diff) |
Random changes
Diffstat (limited to 'kernel/syscalls')
-rw-r--r-- | kernel/syscalls/munmap.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/syscalls/munmap.c b/kernel/syscalls/munmap.c new file mode 100644 index 0000000..82f7918 --- /dev/null +++ b/kernel/syscalls/munmap.c @@ -0,0 +1,6 @@ +#include <sched/scheduler.h> +#include <syscalls.h> + +int syscall_munmap(void *addr, size_t length) { +return munmap(addr, length); +} |