projects
/
vimb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5c6b54d
)
Added missed include to compile on NetBSD.
author
Daniel Carl
<danielcarl@gmx.de>
Thu, 3 Oct 2013 18:16:46 +0000
(20:16 +0200)
committer
Daniel Carl
<danielcarl@gmx.de>
Thu, 3 Oct 2013 18:16:46 +0000
(20:16 +0200)
<sys/wait.h> is needed for WIFEXITED and WEXITSTATUS macros.
Thanks Leonardo Taccari for this patch.
src/command.c
patch
|
blob
|
history
diff --git
a/src/command.c
b/src/command.c
index
cc70721
..
f32d6cc
100644
(file)
--- 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"