From 1b5c824581612cf5bf6c34f7f4472ed7a2eedbdd Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Thu, 17 Nov 2011 10:27:30 +0100 Subject: [PATCH] Compilation fix for FreeBSD. Commit 25ca796b (daemon: Introduce parent_waits flag for daemonize().) broke the compilation on FreeBSD due to signal.h not being included. This patch adds the missing include. --- daemon.c | 1 + 1 file changed, 1 insertion(+) diff --git a/daemon.c b/daemon.c index 541e44de..0bf2f0ac 100644 --- a/daemon.c +++ b/daemon.c @@ -12,6 +12,7 @@ #include #include #include +#include #include "para.h" #include "daemon.h" -- 2.39.2