From c49f4e735d98fbb942db2acc834a9173e2e6bdca Mon Sep 17 00:00:00 2001 From: Consolatis <35009135+Consolatis@users.noreply.github.com> Date: Tue, 21 Jun 2022 18:48:05 +0200 Subject: [PATCH] src/action.c: Fix includes for kill() and getpid() Fixes #410 --- src/action.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/action.c b/src/action.c index 0e5d181f..d29048fb 100644 --- a/src/action.c +++ b/src/action.c @@ -1,8 +1,9 @@ // SPDX-License-Identifier: GPL-2.0-only -#define _POSIX_C_SOURCE +#define _POSIX_C_SOURCE 200809L +#include #include +#include #include -#include #include "common/spawn.h" #include "common/zfree.h" #include "debug.h" -- 2.52.0