From 938773d9cc062fd028f6560b1127a2ecd23f61c3 Mon Sep 17 00:00:00 2001 From: Zuhaitz Méndez Fernández de Aránguiz Date: Tue, 27 Jan 2026 01:22:42 +0000 Subject: Fixed constant hex/oct bug + Fixed some of the examples (work in progress) + added bootloader example (I will add some docs) --- src/codegen/compat.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/codegen/compat.h') diff --git a/src/codegen/compat.h b/src/codegen/compat.h index f34d612..f2d221a 100644 --- a/src/codegen/compat.h +++ b/src/codegen/compat.h @@ -14,10 +14,10 @@ #define ZC_EXTERN_C_END } #else /* C mode */ -#define ZC_AUTO __auto_type ///< Auto type inference. -#define ZC_CAST(T, x) ((T)(x)) ///< Explicit cast. -#define ZC_REINTERPRET(T, x) ((T)(x)) ///< Reinterpret cast. -#define ZC_EXTERN_C ///< Extern "C" (no-op in C). +#define ZC_AUTO __auto_type ///< Auto type inference. +#define ZC_CAST(T, x) ((T)(x)) ///< Explicit cast. +#define ZC_REINTERPRET(T, x) ((T)(x)) ///< Reinterpret cast. +#define ZC_EXTERN_C ///< Extern "C" (no-op in C). #define ZC_EXTERN_C_BEGIN #define ZC_EXTERN_C_END #endif -- cgit v1.2.3