From: Daniel Carl 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/assets/static/git-logo.png/assets/static/git-logo.png/git?a=commitdiff_plain;h=1270f2796fd0dc6fafc117302dc6afc823505714;p=vimb.git Added missed include to compile on NetBSD. 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 #include "config.h" #include "main.h" #include "command.h"