From 71ef5cc0a9936f3a1f0f6e1809135953ca74bc98 Mon Sep 17 00:00:00 2001 From: Romain Vimont Date: Tue, 22 Feb 2022 21:00:43 +0100 Subject: [PATCH] Add missing include for vector Include stdlib.h for realloc(). --- app/src/util/vector.h | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/util/vector.h b/app/src/util/vector.h index a08fa9d6..2c03a430 100644 --- a/app/src/util/vector.h +++ b/app/src/util/vector.h @@ -5,6 +5,7 @@ #include #include +#include // Adapted from vlc_vector: //