mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 08:36:15 +00:00
12 lines
152 B
C
12 lines
152 B
C
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
extern "C" {
|
|
|
|
void* mmap(void*, size_t);
|
|
int munmap(void*, size_t);
|
|
int set_mmap_name(void*, size_t, const char*);
|
|
|
|
}
|