diff options
| author | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-18 11:20:00 +0100 |
|---|---|---|
| committer | Amlal <amlal.elmahrouss@icloud.com> | 2025-02-18 11:20:00 +0100 |
| commit | f471cf287fdef515ced7357aca2f3f47f284998f (patch) | |
| tree | 65ade714b62f95dbe8a1a25be4b3a3c5c4abd079 /dev/Boot/BootKit | |
| parent | bea589553fa9d33168e42bb83b77591fa8a0cad1 (diff) | |
REFACTOR: ZBAOSLDR to BOOTZ.
Signed-off-by: Amlal <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/Boot/BootKit')
| -rw-r--r-- | dev/Boot/BootKit/Support.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/Boot/BootKit/Support.h b/dev/Boot/BootKit/Support.h index 12377d80..3c79262b 100644 --- a/dev/Boot/BootKit/Support.h +++ b/dev/Boot/BootKit/Support.h @@ -16,7 +16,7 @@ #define kLongMax ((long)(~0UL >> 1)) #define kLongMin (~kLongMax) -#ifdef __ZBAOSLDR__ +#ifdef __BOOTZ__ /// @brief memset definition in C++. /// @param dst destination pointer. @@ -40,7 +40,7 @@ EXTERN_C int strcmp(const char* whatToCheck, const char* whatToCheckRight); #include <string.h> -#endif // __ZBAOSLDR__ +#endif // __BOOTZ__ #define SetMem(dst, c, sz) memset(dst, c, sz) #define MoveMem(dst, src, sz) memcpy(dst, src, sz) |
