summaryrefslogtreecommitdiff
path: root/Userland/Services
diff options
context:
space:
mode:
authorBen Wiederhake <BenWiederhake.GitHub@gmx.de>2023-01-03 15:30:44 +0100
committerAndrew Kaster <andrewdkaster@gmail.com>2023-01-07 10:01:37 -0700
commit32810503595a83d3bb4c709759224223f2137e0c (patch)
treeb39d1699b31e65501c869f70ad51b47603b08508 /Userland/Services
parentd575cfda613197a7e090ee8dee053e48df17d730 (diff)
downloadserenity-32810503595a83d3bb4c709759224223f2137e0c.zip
Everywhere: Remove "LibC/" includes, add lint-rule against it
Diffstat (limited to 'Userland/Services')
-rw-r--r--Userland/Services/SpiceAgent/SpiceAgent.cpp4
-rw-r--r--Userland/Services/SpiceAgent/main.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Services/SpiceAgent/SpiceAgent.cpp b/Userland/Services/SpiceAgent/SpiceAgent.cpp
index da0f97a92b..9119ab84b5 100644
--- a/Userland/Services/SpiceAgent/SpiceAgent.cpp
+++ b/Userland/Services/SpiceAgent/SpiceAgent.cpp
@@ -7,14 +7,14 @@
#include "SpiceAgent.h"
#include "ConnectionToClipboardServer.h"
#include <AK/DeprecatedString.h>
-#include <LibC/memory.h>
-#include <LibC/unistd.h>
#include <LibGfx/BMPLoader.h>
#include <LibGfx/BMPWriter.h>
#include <LibGfx/Bitmap.h>
#include <LibGfx/JPGLoader.h>
#include <LibGfx/PNGLoader.h>
#include <LibGfx/PNGWriter.h>
+#include <memory.h>
+#include <unistd.h>
SpiceAgent::SpiceAgent(int fd, ConnectionToClipboardServer& connection)
: m_fd(fd)
diff --git a/Userland/Services/SpiceAgent/main.cpp b/Userland/Services/SpiceAgent/main.cpp
index 00c7d8aa75..89588df46d 100644
--- a/Userland/Services/SpiceAgent/main.cpp
+++ b/Userland/Services/SpiceAgent/main.cpp
@@ -5,10 +5,10 @@
*/
#include "SpiceAgent.h"
-#include <LibC/fcntl.h>
#include <LibCore/System.h>
#include <LibIPC/ConnectionToServer.h>
#include <LibMain/Main.h>
+#include <fcntl.h>
static constexpr auto SPICE_DEVICE = "/dev/hvc0p1"sv;