mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-11 18:51:05 +00:00
12 lines
271 B
C
12 lines
271 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
void kmalloc_init();
|
||
|
|
void *kmalloc(DWORD size) __attribute__ ((malloc));
|
||
|
|
void kfree(void*);
|
||
|
|
|
||
|
|
extern DWORD sum_alloc;
|
||
|
|
extern DWORD sum_free;
|
||
|
|
|
||
|
|
inline void* operator new(size_t, void* p) { return p; }
|
||
|
|
inline void* operator new[](size_t, void* p) { return p; }
|