mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
13 lines
181 B
C
13 lines
181 B
C
#pragma once
|
|
|
|
#include "Types.h"
|
|
|
|
extern "C" {
|
|
|
|
void* kcalloc(dword nmemb, dword size);
|
|
void* kmalloc(dword size);
|
|
void kfree(void* ptr);
|
|
void* krealloc(void* ptr, dword size);
|
|
|
|
}
|
|
|