diff options
author | Marvin Borner | 2020-08-30 18:56:05 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-30 18:56:05 +0200 |
commit | 30932492e9f8a98e1f98461c9d28547f23d82e7e (patch) | |
tree | ffc7acb099a81e09d73df2e4a8290d4a8dc8bfc2 /kernel/inc/boot.h | |
parent | ffa367193078ba32012494cfa7be50e6b3b18e2d (diff) |
Even more tests
Diffstat (limited to 'kernel/inc/boot.h')
-rw-r--r-- | kernel/inc/boot.h | 5 |
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 |