c48320819613e81a09e0481aaa2b92c93fba0d73.patch (499B)
1 From c48320819613e81a09e0481aaa2b92c93fba0d73 Mon Sep 17 00:00:00 2001 2 From: =?UTF-8?q?=C5=81ukasz=20P=2E=20Michalik?= <lpmichalik@googlemail.com> 3 Date: Sat, 9 Aug 2025 08:51:08 +0200 4 Subject: [PATCH] fix missing include for sigaction 5 6 --- 7 comm.c | 1 + 8 1 file changed, 1 insertion(+) 9 10 diff --git a/comm.c b/comm.c 11 index 1e5fd49c..feea1945 100644 12 --- a/comm.c 13 +++ b/comm.c 14 @@ -1,4 +1,5 @@ 15 #include <assert.h> 16 +#include <signal.h> 17 #include <stdbool.h> 18 #include <stdlib.h> 19 #include <sys/types.h>