From aa34a922b1ed0722480d193c5302e2490d04e803 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 20 May 2024 11:16:54 -0400 Subject: Include sys/wait.h on both linux and darwin --- include/os_darwin.h | 2 +- include/os_linux.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/os_darwin.h b/include/os_darwin.h index d5ed1c6..50e01f2 100644 --- a/include/os_darwin.h +++ b/include/os_darwin.h @@ -21,7 +21,7 @@ #include #endif -#include +#include extern char **environ; #define __environ environ diff --git a/include/os_linux.h b/include/os_linux.h index 7eb69bd..3b3a151 100644 --- a/include/os_linux.h +++ b/include/os_linux.h @@ -4,7 +4,7 @@ #include #include #include -#include +#include #ifndef PATH_MAX #include -- cgit