From 355b00e8e00309e88e9ff83ad64ecfee49cfe3bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20P=C3=A9gouri=C3=A9-Gonnard?= Date: Fri, 26 Sep 2025 12:11:03 +0200 Subject: [PATCH] Fix includes in udp_proxy.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The program uses atoi() unconditionally, so it should include stdlib.h unconditionally. Previously this happened to be indirectly included by some other header (via pk.h via ssl.h) but we should not rely on that. Signed-off-by: Manuel Pégourié-Gonnard --- programs/test/udp_proxy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/test/udp_proxy.c b/programs/test/udp_proxy.c index c80a3f59fc..1c52990a8e 100644 --- a/programs/test/udp_proxy.c +++ b/programs/test/udp_proxy.c @@ -17,11 +17,11 @@ #include "mbedtls/build_info.h" #include +#include #if defined(MBEDTLS_PLATFORM_C) #include "mbedtls/platform.h" #else #include -#include #if defined(MBEDTLS_HAVE_TIME) #include #define mbedtls_time time