Include sys/wait.h to avoid compiler warning

gcc warned about an implicit declaration of function 'wait3'. 
Including this header fixes this.
This commit is contained in:
Jan-Erik Rediger 2012-07-28 12:33:01 +03:00
parent 7cf677f7d6
commit ac03c5dd89

View File

@ -36,6 +36,7 @@
#include <ctype.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <sys/wait.h>
extern char **environ;