浏览代码

Added missing #includes on OpenBSD

Ronald1985 3 年之前
父节点
当前提交
89222a0ab2
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      src/common.cpp

+ 5 - 0
src/common.cpp

@@ -25,6 +25,11 @@
 #include <psapi.h>
 #endif
 
+#if defined(GB_SYSTEM_OPENBSD)
+#include <sys/resource.h>
+#include <sys/wait.h>
+#endif
+
 #include <math.h>
 #include <string.h>
 #include <atomic> // Because I wanted the C++11 memory order semantics, of which gb.h does not offer (because it was a C89 library)