blob: d77eae527d69123af73041012cad91eae664e8e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _KALLOC_H
#define _KALLOC_H
#include <stdint.h>
void *kalloc(void);
void *kzalloc(void);
void kfree(void *);
void kalloc_init(uintptr_t end);
void walkfree(void);
#endif /* _KALLOC_H */
|