aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/boot.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/inc/boot.h')
-rw-r--r--kernel/inc/boot.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/inc/boot.h b/kernel/inc/boot.h
index c1d9288..98e964d 100644
--- a/kernel/inc/boot.h
+++ b/kernel/inc/boot.h
@@ -1,6 +1,9 @@
// MIT License, Copyright (c) 2020 Marvin Borner
// This file specifies the structs passed by the bootloader
+#ifndef BOOT_H
+#define BOOT_H
+
#include <def.h>
struct vid_info *boot_passed;
@@ -8,3 +11,5 @@ struct vid_info {
u32 mode;
u32 *vbe;
};
+
+#endif