Files
codezero/include/l4/generic/kmalloc.h
Bahadir Balban e2b791a3d8 Initial commit
2008-01-13 13:53:52 +00:00

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