1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 05:54:58 +00:00

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
parent 61573caf53
commit 0d813ee519

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 {