diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-01 17:19:28 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-12-01 17:19:28 +0100 |
| commit | c62790f8f773a2f10464d2b1e0e286f2b3156712 (patch) | |
| tree | 34bcbcdd42c58bf0e675aa2a0252bcc2048e3ed6 /dev | |
| parent | a1bb5359ccc5e566d0f1a1f374879218a94c7682 (diff) | |
Crc32.h: Fix header guard.
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/ZKAKit/NewKit/Crc32.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/ZKAKit/NewKit/Crc32.h b/dev/ZKAKit/NewKit/Crc32.h index 5918c0f8..5d384975 100644 --- a/dev/ZKAKit/NewKit/Crc32.h +++ b/dev/ZKAKit/NewKit/Crc32.h @@ -8,8 +8,8 @@ * ======================================================== */ -#ifndef __CRC32_H__ -#define __CRC32_H__ +#ifndef CRC32_H +#define CRC32_H #include <NewKit/Defines.h> @@ -20,4 +20,4 @@ namespace Kernel UInt ke_calculate_crc32(const Char* crc, UInt len) noexcept; } // namespace Kernel -#endif // !__CRC32_H__ +#endif // !CRC32_H |
