From: Daniel Carl <danielcarl@gmx.de>
Date: Thu, 3 Oct 2013 18:16:46 +0000 (+0200)
Subject: Added missed include to compile on NetBSD.
X-Git-Url: https://git.owens.tech/editable-focus.html/editable-focus.html/git?a=commitdiff_plain;h=1270f2796fd0dc6fafc117302dc6afc823505714;p=vimb.git

Added missed include to compile on NetBSD.

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

Thanks Leonardo Taccari for this patch.
---

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"