From 3b0c2a354376639e9cf84932b7101d84907ea8fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 20 Dec 2024 15:22:14 +0100 Subject: [PATCH] misc: add missing include stdlib.h (for free()) Closes #1887 --- misc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/misc.c b/misc.c index c7abe03b..1369df03 100644 --- a/misc.c +++ b/misc.c @@ -1,5 +1,6 @@ #include "misc.h" #include "char32.h" +#include bool isword(char32_t wc, bool spaces_only, const char32_t *delimiters)