mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
15 lines
199 B
C++
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);
|
|
|
|
}
|
|
|