From 6f487a28928c396fb6d1d5bb8d58f5b5f5df4d29 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Wed, 24 Nov 2021 19:37:33 +0100 Subject: [PATCH] Add missing includes in compat implementation These includes are necessary for the strdup() compat implementation. --- app/src/compat.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/compat.c b/app/src/compat.c index b3b98bf1..4d084517 100644 --- a/app/src/compat.c +++ b/app/src/compat.c @@ -2,6 +2,9 @@ #include "config.h" +#include +#include + #ifndef HAVE_STRDUP char *strdup(const char *s) { size_t size = strlen(s) + 1;