1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:07:34 +00:00

Kernel+LibC: Move the FD_SETSIZE declaration to API/POSIX/select.h file

This commit is contained in:
Liav A 2023-02-26 18:43:26 +02:00 committed by Andrew Kaster
parent 77486a0d08
commit 800e244ed9
5 changed files with 14 additions and 2 deletions

View file

@ -16,6 +16,7 @@
#include <AK/Variant.h>
#include <AK/Vector.h>
#include <Kernel/API/POSIX/sched.h>
#include <Kernel/API/POSIX/select.h>
#include <Kernel/API/POSIX/signal_numbers.h>
#include <Kernel/Arch/RegisterState.h>
#include <Kernel/Arch/ThreadRegisters.h>
@ -31,7 +32,6 @@
#include <Kernel/Locking/SpinlockProtected.h>
#include <Kernel/Memory/VirtualRange.h>
#include <Kernel/UnixTypes.h>
#include <LibC/fd_set.h>
namespace Kernel {