summaryrefslogtreecommitdiffhomepage
path: root/src/modules/SCSI
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/modules/SCSI
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/modules/SCSI')
-rw-r--r--src/modules/SCSI/SCSI.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modules/SCSI/SCSI.h b/src/modules/SCSI/SCSI.h
index b6228e54..4ca79fdc 100644
--- a/src/modules/SCSI/SCSI.h
+++ b/src/modules/SCSI/SCSI.h
@@ -4,7 +4,8 @@
======================================== */
-#pragma once
+#ifndef SCSI_SCSI_H
+#define SCSI_SCSI_H
#include <NeKit/Config.h>
@@ -18,4 +19,6 @@ using scsi_packet_type = Kernel::UInt16[PacketBitLen];
using scsi_packet_type_12 = scsi_packet_type<12>;
extern const scsi_packet_type_12 kCDRomPacketTemplate;
-} // namespace Kernel \ No newline at end of file
+} // namespace Kernel
+
+#endif