summaryrefslogtreecommitdiffhomepage
path: root/src/misc
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/misc
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/misc')
-rw-r--r--src/misc/BenchKit/HWChronometer.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/misc/BenchKit/HWChronometer.h b/src/misc/BenchKit/HWChronometer.h
index 331f9a7d..a155d377 100644
--- a/src/misc/BenchKit/HWChronometer.h
+++ b/src/misc/BenchKit/HWChronometer.h
@@ -4,7 +4,8 @@ Copyright (C) 2025, Amlal El Mahrouss, licensed under the Apache 2.0 license.
======================================== */
-#pragma once
+#ifndef BENCHKIT_HWCHRONOMETER_H
+#define BENCHKIT_HWCHRONOMETER_H
#include <misc/BenchKit/Chronometer.h>
@@ -64,3 +65,5 @@ class HWChrono BENCHKIT_INTERFACE {
UInt64 fStop{};
};
} // namespace Kernel
+
+#endif