From 639df57cec10c7edeb585444c23f8a4565e46f4a Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Tue, 14 Jul 2020 00:14:07 +0100 Subject: [PATCH] uxc: fix build with uClibc-ng Also here _GNU_SOURCE was missing. Signed-off-by: Daniel Golle --- uxc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/uxc.c b/uxc.c index a0a6706..13b4b8a 100644 --- a/uxc.c +++ b/uxc.c @@ -11,6 +11,10 @@ * GNU General Public License for more details. */ +#ifndef _GNU_SOURCE +#define _GNU_SOURCE +#endif + #include #include #include -- 2.30.2