From 6f1b31d62d3a6057db9030a49f3e33d4e7d141b6 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 10 Feb 2026 09:09:40 +0100 Subject: [PATCH] network: Fix build issue with missing _GNU_SOURCE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CC src/network.o src/network.c: In function ‘network_reset_psk’: src/network.c:114:17: error: implicit declaration of function ‘explicit_bzero’ [-Wimplicit-function-declaration] 114 | explicit_bzero(network->psk, 32); | ^~~~~~~~~~~~~~ --- src/network.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/network.c b/src/network.c index 588ea5ae..a5a2375a 100644 --- a/src/network.c +++ b/src/network.c @@ -24,6 +24,7 @@ #include #endif +#define _GNU_SOURCE #include #include #include