mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:38:11 +00:00
10 lines
105 B
C
10 lines
105 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
extern "C" {
|
|
|
|
void* mmap(void*, size_t);
|
|
int munmap(void*, size_t);
|
|
|
|
}
|