mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:07:35 +00:00
Add simplified mmap() and munmap() syscalls.
This commit is contained in:
parent
a5caf7ca99
commit
9a296d63f3
13 changed files with 116 additions and 2 deletions
10
LibC/mman.h
Normal file
10
LibC/mman.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "types.h"
|
||||
|
||||
extern "C" {
|
||||
|
||||
void* mmap(void*, size_t);
|
||||
int munmap(void*, size_t);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue