diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:08:33 +0100 |
| commit | 9e746d42d2e3faa526f12ba222f5ee6924dd30f9 (patch) | |
| tree | 7f1a83f69562a2725bb9cda27c31d120640d2c1c /src/modules/ATA | |
| parent | 731758b271233b9c11052001ffc20a5a2ca1f365 (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/ATA')
| -rw-r--r-- | src/modules/ATA/ATA.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/modules/ATA/ATA.h b/src/modules/ATA/ATA.h index 09305801..626bb247 100644 --- a/src/modules/ATA/ATA.h +++ b/src/modules/ATA/ATA.h @@ -11,7 +11,8 @@ ======================================== */ -#pragma once +#ifndef ATA_ATA_H +#define ATA_ATA_H #include <CompilerKit/CompilerKit.h> #include <NeKit/Config.h> @@ -154,4 +155,6 @@ Kernel::SizeT drv_std_get_sector_count(); /// @brief get device size. Kernel::SizeT drv_std_get_size(); -#endif // ifdef __NEOSKRNL__
\ No newline at end of file +#endif // ifdef __NEOSKRNL__ + +#endif |
