diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-01-03 15:30:44 +0100 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2023-01-07 10:01:37 -0700 |
commit | 32810503595a83d3bb4c709759224223f2137e0c (patch) | |
tree | b39d1699b31e65501c869f70ad51b47603b08508 /Userland/Services | |
parent | d575cfda613197a7e090ee8dee053e48df17d730 (diff) | |
download | serenity-32810503595a83d3bb4c709759224223f2137e0c.zip |
Everywhere: Remove "LibC/" includes, add lint-rule against it
Diffstat (limited to 'Userland/Services')
-rw-r--r-- | Userland/Services/SpiceAgent/SpiceAgent.cpp | 4 | ||||
-rw-r--r-- | Userland/Services/SpiceAgent/main.cpp | 2 |
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; |