From 1270f2796fd0dc6fafc117302dc6afc823505714 Mon Sep 17 00:00:00 2001
From: Daniel Carl <danielcarl@gmx.de>
Date: Thu, 3 Oct 2013 20:16:46 +0200
Subject: [PATCH] Added missed include to compile on NetBSD.

<sys/wait.h> is needed for WIFEXITED and WEXITSTATUS macros.

Thanks Leonardo Taccari for this patch.
---
 src/command.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/command.c b/src/command.c
index cc70721..f32d6cc 100644
--- a/src/command.c
+++ b/src/command.c
@@ -17,6 +17,7 @@
  * along with this program. If not, see http://www.gnu.org/licenses/.
  */
 
+#include <sys/wait.h>
 #include "config.h"
 #include "main.h"
 #include "command.h"
-- 
2.20.1