diff options
Diffstat (limited to 'src/boot/BootKit/Support.h')
| -rw-r--r-- | src/boot/BootKit/Support.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/boot/BootKit/Support.h b/src/boot/BootKit/Support.h index 110b220c..b51112ef 100644 --- a/src/boot/BootKit/Support.h +++ b/src/boot/BootKit/Support.h @@ -4,7 +4,8 @@ ======================================== */ -#pragma once +#ifndef BOOTKIT_SUPPORT_H +#define BOOTKIT_SUPPORT_H /// @file Support.h /// @brief Purpose of this file is to help port libs into the bootloader. @@ -143,3 +144,5 @@ inline long StringToLong(const char* nptr, char** endptr, int base) { return (long) ((is_neg) ? -n : n); } + +#endif |
