From 71b1c0d59d011a9dfbc482eb80fcb7a1d2cc96ea Mon Sep 17 00:00:00 2001 From: sigsegv7 Date: Fri, 6 Oct 2023 19:59:19 -0400 Subject: kernel: vm: Update header guards Signed-off-by: sigsegv7 --- sys/include/vm/vm.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'sys/include/vm') 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 #include @@ -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_ */ -- cgit v1.2.3