summaryrefslogtreecommitdiff
path: root/Kernel/API
diff options
context:
space:
mode:
authorTim Schumacher <timschumi@gmx.de>2022-03-06 19:29:56 +0100
committerBrian Gianforcaro <b.gianfo@gmail.com>2022-03-08 16:18:48 -0800
commit5200cdac43b00701adfc00638499f403e89e2a69 (patch)
treed6ee752ac394188c7d2605aa8bd7b11422f87834 /Kernel/API
parent85ba70d86f69b2535586a2adcd873f85238b8491 (diff)
downloadserenity-5200cdac43b00701adfc00638499f403e89e2a69.zip
Kernel: Remove an unused fd_set.h import
The project appears to build just fine without it, and the explicit use of `LibC` causes it to conflict with the system-wide `fd_set.h` when building inside of Serenity.
Diffstat (limited to 'Kernel/API')
-rw-r--r--Kernel/API/Syscall.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Kernel/API/Syscall.h b/Kernel/API/Syscall.h
index 9ef87ca331..ec88f26ed9 100644
--- a/Kernel/API/Syscall.h
+++ b/Kernel/API/Syscall.h
@@ -10,10 +10,6 @@
#include <AK/Types.h>
#include <AK/Userspace.h>
-#ifdef __serenity__
-# include <LibC/fd_set.h>
-#endif
-
constexpr int syscall_vector = 0x82;
extern "C" {