1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:38:11 +00:00
serenity/LibC/mman.h
2018-10-24 09:48:41 +02:00

10 lines
105 B
C

#pragma once
#include "types.h"
extern "C" {
void* mmap(void*, size_t);
int munmap(void*, size_t);
}