From 9e746d42d2e3faa526f12ba222f5ee6924dd30f9 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Fri, 26 Dec 2025 10:08:33 +0100 Subject: feat! breaking API changes, use header guards and libSystem fixes. Signed-off-by: Amlal El Mahrouss --- src/kernel/StorageKit/StorageKit.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/kernel/StorageKit/StorageKit.h') diff --git a/src/kernel/StorageKit/StorageKit.h b/src/kernel/StorageKit/StorageKit.h index d7a1b6e9..87dd346e 100644 --- a/src/kernel/StorageKit/StorageKit.h +++ b/src/kernel/StorageKit/StorageKit.h @@ -4,7 +4,8 @@ ======================================== */ -#pragma once +#ifndef STORAGEKIT_STORAGEKIT_H +#define STORAGEKIT_STORAGEKIT_H #define kDriveSectorSizeHDD (512U) #define kDriveSectorSizeSSD (512U) @@ -19,3 +20,5 @@ class AHCIDeviceInterface; class ATADeviceInterface; class SCSIDeviceInterface; } // namespace Kernel + +#endif -- cgit v1.2.3