#ifndef _KALLOC_H #define _KALLOC_H void *kalloc(void); void *kzalloc(void); void kfree(void *); #endif /* _KALLOC_H */