From 534a41c0737d0e93aee3a9deb85927be86b3cd09 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 10 Feb 2026 09:14:26 +0100 Subject: [PATCH] ap: Fix build issue with missing _GNU_SOURCE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CC src/ap.o src/ap.c: In function ‘ap_reset’: src/ap.c:286:9: error: implicit declaration of function ‘explicit_bzero’ [-Wimplicit-function-declaration] 286 | explicit_bzero(ap->passphrase, sizeof(ap->passphrase)); | ^~~~~~~~~~~~~~ --- src/ap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ap.c b/src/ap.c index af6a1709..416e1104 100644 --- a/src/ap.c +++ b/src/ap.c @@ -24,6 +24,7 @@ #include #endif +#define _GNU_SOURCE #include #include #include