From 5185f640045df2b4f8ee7f028fc59e6f02fdf367 Mon Sep 17 00:00:00 2001 From: Brahmajit Das Date: Mon, 29 Jan 2024 23:28:53 +0530 Subject: [PATCH] Fix implicit declaration of function 'malloc' First observed on Gentoo Linux with GCC 14. This is due to GCC 14 enabling -Werror=implicit-function-declaration by default. Thus resulting in errors such as: openconnect-internal.h: In function 'alloc_pkt': openconnect-internal.h:911:27: error: implicit declaration of function 'malloc' [-Werror=implicit-function-declaration] 911 | struct pkt *pkt = malloc(alloc_len); | ^~~~~~ Plese refer gentoo bug: https://bugs.gentoo.org/923173 Signed-off-by: Brahmajit Das --- openconnect-internal.h | 1 + 1 file changed, 1 insertion(+) diff --git a/openconnect-internal.h b/openconnect-internal.h index 21460adf..2830d693 100644 --- a/openconnect-internal.h +++ b/openconnect-internal.h @@ -87,6 +87,7 @@ #include #include #include +#include #ifdef _WIN32 #ifndef _Out_cap_c_ -- 2.50.1