From f471cf287fdef515ced7357aca2f3f47f284998f Mon Sep 17 00:00:00 2001 From: Amlal Date: Tue, 18 Feb 2025 11:20:00 +0100 Subject: REFACTOR: ZBAOSLDR to BOOTZ. Signed-off-by: Amlal --- dev/Boot/BootKit/Support.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/Boot/BootKit/Support.h') 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 -#endif // __ZBAOSLDR__ +#endif // __BOOTZ__ #define SetMem(dst, c, sz) memset(dst, c, sz) #define MoveMem(dst, src, sz) memcpy(dst, src, sz) -- cgit v1.2.3