summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kaster <akaster@serenityos.org>2022-12-18 09:02:15 -0700
committerAndreas Kling <kling@serenityos.org>2022-12-20 11:04:05 +0100
commit0d813ee51927f201b9738cfe63174cce42a49603 (patch)
tree2cee400c453958b410380628efa4202d7eb59a1e
parent61573caf53f289389a46575db547f16ddaa33f81 (diff)
downloadserenity-0d813ee51927f201b9738cfe63174cce42a49603.zip
LibThreading: Remove unused include of <sys/cdefs.h>
This file is not needed here, and causes a compile issue on musl-libc based distributions. We should only be including this file in LibC, for the most part anyway.
-rw-r--r--Userland/Libraries/LibThreading/ConditionVariable.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibThreading/ConditionVariable.h b/Userland/Libraries/LibThreading/ConditionVariable.h
index cf8b63ef25..6996de7eb9 100644
--- a/Userland/Libraries/LibThreading/ConditionVariable.h
+++ b/Userland/Libraries/LibThreading/ConditionVariable.h
@@ -9,7 +9,6 @@
#include <AK/Function.h>
#include <LibThreading/Mutex.h>
#include <pthread.h>
-#include <sys/cdefs.h>
#include <sys/types.h>
namespace Threading {