diff options
author | David Robillard <d@drobilla.net> | 2020-08-13 19:48:41 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-08-14 09:43:38 +0200 |
commit | b52e3f8db950cc8f3397fad00d0fcc8e611004f7 (patch) | |
tree | 59ff12f518308d36befb5b854dd73815ed8b8210 /zix/thread.h | |
parent | f8b396210aa3247a64c890a69a7d059513797607 (diff) | |
download | zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.tar.gz zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.tar.bz2 zix-b52e3f8db950cc8f3397fad00d0fcc8e611004f7.zip |
Remove workarounds for ancient versions of MSVC
Diffstat (limited to 'zix/thread.h')
-rw-r--r-- | zix/thread.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zix/thread.h b/zix/thread.h index e2b59c4..b7956d2 100644 --- a/zix/thread.h +++ b/zix/thread.h @@ -19,8 +19,6 @@ #include "zix/common.h" -#include <stdbool.h> - #ifdef _WIN32 # include <windows.h> #else @@ -28,6 +26,8 @@ # include <pthread.h> #endif +#include <stdbool.h> + #ifdef __cplusplus extern "C" { #endif |