aboutsummaryrefslogtreecommitdiff
path: root/kernel/inc/boot.h
diff options
context:
space:
mode:
authorMarvin Borner2020-08-30 18:56:05 +0200
committerMarvin Borner2020-08-30 18:56:05 +0200
commit30932492e9f8a98e1f98461c9d28547f23d82e7e (patch)
treeffc7acb099a81e09d73df2e4a8290d4a8dc8bfc2 /kernel/inc/boot.h
parentffa367193078ba32012494cfa7be50e6b3b18e2d (diff)
Even more tests
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