summaryrefslogtreecommitdiff
path: root/Kernel/Syscalls/poll.cpp
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-26 18:43:26 +0200
committerAndrew Kaster <andrewdkaster@gmail.com>2023-03-01 19:36:53 -0700
commit800e244ed9fd30729de7cf7d1f97792a811587de (patch)
treea360fb2aa7437ef30be474b37a77c4c8eaf6f9c5 /Kernel/Syscalls/poll.cpp
parent77486a0d08b6f4956b18d5898e108cc7a9c8a5d6 (diff)
downloadserenity-800e244ed9fd30729de7cf7d1f97792a811587de.zip
Kernel+LibC: Move the FD_SETSIZE declaration to API/POSIX/select.h file
Diffstat (limited to 'Kernel/Syscalls/poll.cpp')
-rw-r--r--Kernel/Syscalls/poll.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Syscalls/poll.cpp b/Kernel/Syscalls/poll.cpp
index fd9bfbe7a6..7302fa8566 100644
--- a/Kernel/Syscalls/poll.cpp
+++ b/Kernel/Syscalls/poll.cpp
@@ -6,6 +6,7 @@
#include <AK/ScopeGuard.h>
#include <AK/Time.h>
+#include <Kernel/API/POSIX/select.h>
#include <Kernel/Debug.h>
#include <Kernel/FileSystem/OpenFileDescription.h>
#include <Kernel/Process.h>