summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/EventLoop.cpp
diff options
context:
space:
mode:
authorBrian Gianforcaro <bgianf@serenityos.org>2021-07-31 00:42:03 -0700
committerGunnar Beutner <gunnar@beutner.name>2021-08-01 08:10:16 +0200
commit176e1cbca7005af39c3525a4df97afa3521bfc5a (patch)
treec821d730ab32394e22daabb62fcc842516ea42d6 /Userland/Libraries/LibCore/EventLoop.cpp
parent0fc853f5badeaa248f92bdfb25242f3f30e1ed97 (diff)
downloadserenity-176e1cbca7005af39c3525a4df97afa3521bfc5a.zip
LibCore: Remove unused header includes
Diffstat (limited to 'Userland/Libraries/LibCore/EventLoop.cpp')
-rw-r--r--Userland/Libraries/LibCore/EventLoop.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp
index be8406279e..886f5c8ab2 100644
--- a/Userland/Libraries/LibCore/EventLoop.cpp
+++ b/Userland/Libraries/LibCore/EventLoop.cpp
@@ -5,7 +5,6 @@
*/
#include <AK/Badge.h>
-#include <AK/ByteBuffer.h>
#include <AK/Debug.h>
#include <AK/Format.h>
#include <AK/IDAllocator.h>
@@ -26,11 +25,9 @@
#include <fcntl.h>
#include <signal.h>
#include <stdio.h>
-#include <stdlib.h>
#include <string.h>
#include <sys/select.h>
#include <sys/socket.h>
-#include <sys/stat.h>
#include <sys/time.h>
#include <time.h>
#include <unistd.h>