1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-19 06:45:09 +00:00
serenity/AK/SimpleMalloc.h
2019-01-31 17:31:23 +01:00

15 lines
199 B
C++

#pragma once
#include "Types.h"
namespace SimpleMalloc {
void initialize();
void dump();
byte* allocate(dword);
byte* allocate_zeroed(dword);
void free(byte*);
byte* reallocate(byte*, dword);
}