summaryrefslogtreecommitdiffhomepage
path: root/src/kernel/CompilerKit/Version.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/kernel/CompilerKit/Version.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/kernel/CompilerKit/Version.h')
-rw-r--r--src/kernel/CompilerKit/Version.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/kernel/CompilerKit/Version.h b/src/kernel/CompilerKit/Version.h
index 4250531a..b74c7402 100644
--- a/src/kernel/CompilerKit/Version.h
+++ b/src/kernel/CompilerKit/Version.h
@@ -1,9 +1,12 @@
// (c) Amlal El Mahrouss
-#pragma once
+#ifndef COMPILERKIT_VERSION_H
+#define COMPILERKIT_VERSION_H
#define BOOTLOADER_VERSION "v0.0.2-bootz"
#define KERNEL_VERSION "v0.0.2-krnl"
#define BOOTLOADER_VERSION_BCD (0x0002)
#define KERNEL_VERSION_BCD (0x0002)
+
+#endif