aboutsummaryrefslogtreecommitdiff
path: root/sys/include/vm
diff options
context:
space:
mode:
Diffstat (limited to 'sys/include/vm')
-rw-r--r--sys/include/vm/vm.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/include/vm/vm.h b/sys/include/vm/vm.h
index a1f1e23..78038f0 100644
--- a/sys/include/vm/vm.h
+++ b/sys/include/vm/vm.h
@@ -27,8 +27,8 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef _SYS_VM_VM_H_
-#define _SYS_VM_VM_H_
+#ifndef _VM_H_
+#define _VM_H_
#include <sys/types.h>
#include <sys/limine.h>
@@ -40,4 +40,6 @@ extern volatile struct limine_hhdm_request g_hhdm_request;
#define PHYS_TO_VIRT(phys) (void *)((uintptr_t)phys + VM_HIGHER_HALF)
#define VIRT_TO_PHYS(virt) ((uintptr_t)virt - VM_HIGHER_HALF)
-#endif /* !_SYS_VM_VM_H_ */
+void vm_init(void);
+
+#endif /* !_VM_H_ */