diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 11:16:54 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-05-20 11:16:54 -0400 |
commit | aa34a922b1ed0722480d193c5302e2490d04e803 (patch) | |
tree | 756fe26b16a004842bd5939d08fb63e25cbd5bd4 /include/os_darwin.h | |
parent | c278c4dbcd0fc89f7baee4c82676e9deef780528 (diff) | |
download | stasis-aa34a922b1ed0722480d193c5302e2490d04e803.tar.gz |
Include sys/wait.h on both linux and darwin
Diffstat (limited to 'include/os_darwin.h')
-rw-r--r-- | include/os_darwin.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <sys/syslimits.h> #endif -#include <wait.h> +#include <sys/wait.h> extern char **environ; #define __environ environ |