blob: 0a481f13366231ed5891e98dd9e3e6f197c3bb30 [file] [log] [blame]
#ifndef VM_H
#define VM_H
void setup_vm();
void *vmalloc(unsigned long size);
void vfree(void *mem);
void *vmap(unsigned long long phys, unsigned long size);
#endif