shell.c: Include sys/wait.h

Required for the W* macros on OpenBSD. Reported by Brian Callahan.
This commit is contained in:
Yorhel 2015-04-07 10:39:46 +02:00
parent c0334e071a
commit 29f347c19c

View file

@ -32,6 +32,7 @@
#include <ncurses.h> #include <ncurses.h>
#include <stdlib.h> #include <stdlib.h>
#include <unistd.h> #include <unistd.h>
#include <sys/wait.h>
void shell_draw() { void shell_draw() {
char *full_path; char *full_path;