compiler: add missing header file on OpenBSD

pull/2350/head
eau 2019-10-20 06:00:01 +02:00 committed by Alexander Medvednikov
parent b73387647c
commit 6d8548d7a5
1 changed files with 6 additions and 0 deletions

View File

@ -48,6 +48,12 @@ CommonCHeaders = '
#include <sys/wait.h> // os__wait uses wait on nix #include <sys/wait.h> // os__wait uses wait on nix
#endif #endif
#ifdef __OpenBSD__
#include <sys/types.h>
#include <sys/resource.h>
#include <sys/wait.h> // os__wait uses wait on nix
#endif
#define EMPTY_STRUCT_DECLARATION #define EMPTY_STRUCT_DECLARATION
#define EMPTY_STRUCT_INITIALIZATION 0 #define EMPTY_STRUCT_INITIALIZATION 0
// Due to a tcc bug, the length of an array needs to be specified, but GCC crashes if it is... // Due to a tcc bug, the length of an array needs to be specified, but GCC crashes if it is...