mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 17:57:35 +00:00
Start fixing up AK to work inside the kernel.
This commit is contained in:
parent
1203c327c7
commit
5d465582a3
10 changed files with 68 additions and 47 deletions
|
@ -4,10 +4,10 @@
|
|||
|
||||
extern "C" {
|
||||
|
||||
void* kcalloc(dword nmemb, dword size);
|
||||
void* kmalloc(dword size);
|
||||
void* kcalloc(size_t nmemb, size_t size);
|
||||
void* kmalloc(size_t size);
|
||||
void kfree(void* ptr);
|
||||
void* krealloc(void* ptr, dword size);
|
||||
void* krealloc(void* ptr, size_t size);
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue