From b281b12ffcdc7a7c0a8fc2e1e9f6eaaa33a8402d Mon Sep 17 00:00:00 2001 From: Fomalhaut Weisszwerg Date: Thu, 17 Aug 2017 19:46:33 +0900 Subject: [PATCH] Fix: implicit declaration of function 'allow_signal'. 'allow_signal' requires explicit including of "linux/sched/signal.h" from Linux 4.11. --- include/osdep_service.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/osdep_service.h b/include/osdep_service.h index 59b01e3..c846548 100644 --- a/include/osdep_service.h +++ b/include/osdep_service.h @@ -39,6 +39,7 @@ #ifdef PLATFORM_LINUX #include + #include #endif #ifdef PLATFORM_OS_XP