From 8a640c4b0c713871fca4a04096a53d77210fb4e7 Mon Sep 17 00:00:00 2001 From: Rebbe Pod <66928914+RebbePod@users.noreply.github.com> Date: Tue, 8 Apr 2025 01:10:37 -0400 Subject: [PATCH 1/2] Update tiny_stack_allocator.c I am trying to use this as a library for esphome I think this will fix an error I'm getting ``` src/tiny_stack_allocator.c:16:5: error: unknown type name 'max_align_t' max_align_t data[max(_size, sizeof(max_align_t)) / sizeof(max_align_t)];``` --- src/tiny_stack_allocator.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tiny_stack_allocator.c b/src/tiny_stack_allocator.c index 3c90de9..70836ec 100644 --- a/src/tiny_stack_allocator.c +++ b/src/tiny_stack_allocator.c @@ -4,6 +4,7 @@ */ #include +#include #include #include "tiny_stack_allocator.h" #include "tiny_utils.h" From 15a3a1870114dc6d4c6f1534c414b6b1c115830d Mon Sep 17 00:00:00 2001 From: Ryan Hartlage Date: Tue, 8 Apr 2025 08:07:22 -0400 Subject: [PATCH 2/2] Bump version --- library.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.json b/library.json index ca45701..49cfad1 100644 --- a/library.json +++ b/library.json @@ -13,7 +13,7 @@ "maintainer": true } ], - "version": "7.1.0", + "version": "7.1.1", "frameworks": "*", "platforms": "*", "export": {