commit f3b63907979ae38706562db3924ceed757da393a
parent f081e5e436c2bd27d3514db9c04311f3b767ff23
Author: hhvn <dev@hhvn.uk>
Date: Sun, 6 Jun 2021 17:38:24 +0100
main.c handler.c: explicitly include sys/wait.h
Diffstat:
2 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/handler.c b/handler.c
@@ -8,6 +8,7 @@
#include <stdlib.h>
#include <pwd.h>
#include <sys/types.h>
+#include <sys/wait.h>
#include "handler.h"
#include "main.h"
diff --git a/main.c b/main.c
@@ -12,6 +12,7 @@
#include <pwd.h>
#include <sys/types.h>
#include <sys/socket.h>
+#include <sys/wait.h>
#include "arg.h"
#include "main.h"
#include "handler.h"