From 82e759e3934982e3eb257c4b283f53f8dbe69200 Mon Sep 17 00:00:00 2001 From: ToyB-Chan Date: Thu, 11 Jun 2026 16:00:37 +0200 Subject: [PATCH] version update --- minimal_heap.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/minimal_heap.h b/minimal_heap.h index f1d10f6..535110d 100644 --- a/minimal_heap.h +++ b/minimal_heap.h @@ -1,8 +1,9 @@ -/* Version 1.8 */ - #ifndef __MINIMAL_HEAP_H__ #define __MINIMAL_HEAP_H__ +#define MIHP_VERSION_MAJOR 1 +#define MIHP_VERSION_MINOR 9 + #include #include #include @@ -183,7 +184,7 @@ size_t MIHP_GetMinimalPayloadSize(const MIHP_Heap* heap); /* */ #if MIHP_IMPLEMENTATION -#include "minimal_heap_implementation.inl" + #include "minimal_heap_implementation.inl" #endif #endif