# HG changeset patch # User Mike Becker # Date 1764513935 -3600 # Node ID 6d65b1e971366d65e06b701e6e47e104d3107dc7 # Parent 313fd460d264a69aa172c285c44513790f630c30 include stdalign.h when not using C23 or newer diff -r 313fd460d264 -r 6d65b1e97136 src/linked_list.c --- a/src/linked_list.c Sun Nov 30 15:41:15 2025 +0100 +++ b/src/linked_list.c Sun Nov 30 15:45:35 2025 +0100 @@ -30,6 +30,9 @@ #include "cx/compare.h" #include #include +#if __STDC_VERSION__ < 202311L +#include +#endif // LOW LEVEL LINKED LIST FUNCTIONS