mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-13 01:59:14 +03:00
16 lines
199 B
C++
16 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);
|
|
|
|
}
|
|
|