sys/wait.h is the proper header, not wait.h
committer: Markus Bröker <mbroeker@largo.homelinux.org>
--- a/mem2swap.c
+++ b/mem2swap.c
@@ -9,7 +9,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
-#include <wait.h>
+#include <sys/wait.h>
#define N 1000
--- a/pipe.c
+++ b/pipe.c
@@ -7,7 +7,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
-#include <wait.h>
+#include <sys/wait.h>
#include <assert.h>
#define MAX 50
--- a/prog_limit.c
+++ b/prog_limit.c
@@ -5,7 +5,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include <wait.h>
+#include <sys/wait.h>
#include <unistd.h>
int set_limit (int);