version update

This commit is contained in:
2026-06-11 16:00:37 +02:00
parent 8b033bb7d3
commit 82e759e393

View File

@@ -1,8 +1,9 @@
/* Version 1.8 */
#ifndef __MINIMAL_HEAP_H__ #ifndef __MINIMAL_HEAP_H__
#define __MINIMAL_HEAP_H__ #define __MINIMAL_HEAP_H__
#define MIHP_VERSION_MAJOR 1
#define MIHP_VERSION_MINOR 9
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>
#include <stdbool.h> #include <stdbool.h>
@@ -183,7 +184,7 @@ size_t MIHP_GetMinimalPayloadSize(const MIHP_Heap* heap);
/* */ /* */
#if MIHP_IMPLEMENTATION #if MIHP_IMPLEMENTATION
#include "minimal_heap_implementation.inl" #include "minimal_heap_implementation.inl"
#endif #endif
#endif #endif