From 25e8c308e68ba79e99f4e7cb2fe8d752defb982a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pa=CC=84vels=20Nadtoc=CC=8Cajevs?= <7645683+bruvzg@users.noreply.github.com> Date: Tue, 27 Jan 2026 12:22:54 +0200 Subject: [PATCH] Define `sighandler_t` only is `_GNU_SOURCE` is not defined. --- drivers/unix/file_access_unix_pipe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/unix/file_access_unix_pipe.cpp b/drivers/unix/file_access_unix_pipe.cpp index e808c5ded2..9238afe183 100644 --- a/drivers/unix/file_access_unix_pipe.cpp +++ b/drivers/unix/file_access_unix_pipe.cpp @@ -43,7 +43,7 @@ #include #include -#ifndef sighandler_t +#ifndef _GNU_SOURCE typedef typeof(void(int)) *sighandler_t; #endif