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.
This commit is contained in:
Andrew Kaster 2022-12-18 09:02:15 -07:00 committed by Andreas Kling
commit 0d813ee519
Notes: sideshowbarker 2024-07-17 09:49:33 +09:00

View file

@ -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 {