diff options
author | sigsegv7 <ian@vegaa.systems> | 2023-10-06 19:59:19 -0400 |
---|---|---|
committer | sigsegv7 <ian@vegaa.systems> | 2023-10-06 20:04:26 -0400 |
commit | 71b1c0d59d011a9dfbc482eb80fcb7a1d2cc96ea (patch) | |
tree | b110ac56f816e649c0b28225623a1fbff3b5ef5d | |
parent | f369979e8c61bc983787858f846364717f553dd8 (diff) |
kernel: vm: Update header guards
Signed-off-by: sigsegv7 <ian@vegaa.systems>
-rw-r--r-- | sys/include/vm/vm.h | 8 |
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_ */ |