mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
14 lines
181 B
C
14 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);
|
||
|
|
||
|
}
|
||
|
|