diff options
| author | gingerBill <bill@gingerbill.org> | 2020-04-07 11:41:55 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-04-07 11:41:55 +0100 |
| commit | 7ff690500ac74b916da4df6a6eb62c4dac8ced2b (patch) | |
| tree | 3e96446d72315af6721766a0de5288f7883eefba /src | |
| parent | d0b913dad1325bde1bdb3df32c20cca273cb1c0a (diff) | |
Fix psapi.h to be windows only
Diffstat (limited to 'src')
| -rw-r--r-- | src/common.cpp | 1 | ||||
| -rw-r--r-- | src/main.cpp | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/common.cpp b/src/common.cpp index 78782704c..498b35401 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -11,6 +11,7 @@ #define NOMINMAX 1 #include <windows.h> #undef NOMINMAX +#include <psapi.h> #endif #define GB_WINDOWS_H_INCLUDED diff --git a/src/main.cpp b/src/main.cpp index c81470ade..1b0a91d9b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,7 +13,6 @@ gb_global Timings global_timings = {0}; #if defined(LLVM_BACKEND_SUPPORT) #include "llvm-c/Types.h" #endif -#include "psapi.h" #include "parser.hpp" #include "checker.hpp" |