Karg v0.2.0
The kernel of CargOS
Loading...
Searching...
No Matches
kalloc.h
Go to the documentation of this file.
1#pragma once
2
3#include <types.h>
4
5void *kmalloc(usize size);
6void *kcalloc(usize size, usize n);
7void kfree(void *ptr);
void kfree(void *ptr)
Definition kalloc.c:58
void * kcalloc(usize size, usize n)
Definition kalloc.c:49
void * kmalloc(usize size)
Definition kalloc.c:16
__UINTPTR_TYPE__ usize
Definition types.h:28