mirror of
https://github.com/drasko/codezero.git
synced 2026-04-13 15:39:02 +02:00
10 lines
144 B
C
10 lines
144 B
C
#ifndef __KMALLOC_H__
|
|
#define __KMALLOC_H__
|
|
|
|
void *kmalloc(int size);
|
|
int kfree(void *p);
|
|
void *kzalloc(int size);
|
|
void init_kmalloc();
|
|
|
|
#endif
|