summaryrefslogtreecommitdiffhomepage
path: root/src/boot/BootKit/Support.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 10:08:33 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-26 10:08:33 +0100
commit9e746d42d2e3faa526f12ba222f5ee6924dd30f9 (patch)
tree7f1a83f69562a2725bb9cda27c31d120640d2c1c /src/boot/BootKit/Support.h
parent731758b271233b9c11052001ffc20a5a2ca1f365 (diff)
feat! breaking API changes, use header guards and libSystem fixes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/boot/BootKit/Support.h')
-rw-r--r--src/boot/BootKit/Support.h5
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