misc: add missing include stdlib.h (for free())

Closes #1887
This commit is contained in:
Daniel Eklöf 2024-12-20 15:22:14 +01:00
parent d523e7a676
commit 3b0c2a3543
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

1
misc.c
View file

@ -1,5 +1,6 @@
#include "misc.h"
#include "char32.h"
#include <stdlib.h>
bool
isword(char32_t wc, bool spaces_only, const char32_t *delimiters)