aboutsummaryrefslogtreecommitdiff
path: root/include/lib/kmem.h
blob: 67751cdfed7646ccd3dc37d5fc8ac514d0342029 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef LIB_KMEM_H
#define LIB_KMEM_H

void* kmalloc(unsigned int size);
void* kcalloc(unsigned int size);
void  kfree(void* ptr);

void kmemshow32(void* data, unsigned long length);
void kmemshow(void* data, unsigned long length);

#endif