Add simplified mmap() and munmap() syscalls.

This commit is contained in:
Andreas Kling 2018-10-24 09:48:24 +02:00
commit 9a296d63f3
Notes: sideshowbarker 2024-07-19 18:39:34 +09:00
13 changed files with 116 additions and 2 deletions

10
LibC/mman.h Normal file
View file

@ -0,0 +1,10 @@
#pragma once
#include "types.h"
extern "C" {
void* mmap(void*, size_t);
int munmap(void*, size_t);
}