From: Daniel Golle Date: Mon, 13 Jul 2020 23:14:07 +0000 (+0100) Subject: uxc: fix build with uClibc-ng X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=639df57cec10c7edeb585444c23f8a4565e46f4a;p=project%2Fprocd.git uxc: fix build with uClibc-ng Also here _GNU_SOURCE was missing. Signed-off-by: Daniel Golle --- 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