diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-08-22 13:50:40 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-22 13:50:40 +0200 |
| commit | 27d556735a96e63b11b628393a39ba5b352fcfc0 (patch) | |
| tree | 9b956475984c102add55afd4ef3ca9df29cc933f /src | |
| parent | b3e3b6c6565d6211ffd8ccef7a3866e03a978fee (diff) | |
| parent | b70d211f21f5d43e2151008cdc645c9ffb7175aa (diff) | |
Merge pull request #1969 from ashemedai/bug-1968-bsd-headers
fix: Expand OpenBSD include for wait.h to all Unix
Diffstat (limited to 'src')
| -rw-r--r-- | src/gb/gb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gb/gb.h b/src/gb/gb.h index d09c7618b..90f2fd15a 100644 --- a/src/gb/gb.h +++ b/src/gb/gb.h @@ -90,7 +90,7 @@ extern "C" { #error This operating system is not supported #endif -#if defined(GB_SYSTEM_OPENBSD) +#if defined(GB_SYSTEM_UNIX) #include <sys/wait.h> #endif |