From 15c7549830194fb0083f4605fec68eecbf56eb82 Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Thu, 7 Jan 2021 18:57:03 +0100 Subject: [PATCH] Fix build error on Linux due to missing `` include This closes #662. --- tools/quake3/common/threads.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/quake3/common/threads.c b/tools/quake3/common/threads.c index 89f24088..43925cd8 100644 --- a/tools/quake3/common/threads.c +++ b/tools/quake3/common/threads.c @@ -26,6 +26,8 @@ #include #endif +#include + #include "cmdlib.h" #include "mathlib.h" #include "inout.h"