blob: 894defa76f3804558afaee6bc6005057ded932ea (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef DEF_PAGEALLOC_NS_H
#define DEF_PAGEALLOC_NS_H
#include <Core/common.wtf.h>
namespace PageAlloc {
void init();
void* alloc(u32int* phys);
void free(void *ptr);
}
#endif
|