mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01: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
|