diff options
author | Linus Groh <mail@linusgroh.de> | 2021-05-31 18:01:53 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-05-31 18:01:53 +0100 |
commit | 1eb048bed02e1c32e40c8f0df6688cdde06bb0d3 (patch) | |
tree | 193b5bba7f89d5ab6da84de67716bc8f37c6d30e /Userland/Utilities/sysctl.cpp | |
parent | 16d51d78c0ca292a12cc27fe0766fa86df25d8a9 (diff) | |
download | serenity-1eb048bed02e1c32e40c8f0df6688cdde06bb0d3.zip |
Userland: Remove a bunch of unused includes
As reported by CLion.
Diffstat (limited to 'Userland/Utilities/sysctl.cpp')
-rw-r--r-- | Userland/Utilities/sysctl.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Userland/Utilities/sysctl.cpp b/Userland/Utilities/sysctl.cpp index 667e3f5a4f..1ced156c95 100644 --- a/Userland/Utilities/sysctl.cpp +++ b/Userland/Utilities/sysctl.cpp @@ -7,16 +7,9 @@ #include <AK/ByteBuffer.h> #include <AK/String.h> #include <AK/StringBuilder.h> -#include <AK/Vector.h> #include <LibCore/ArgsParser.h> #include <LibCore/DirIterator.h> #include <LibCore/File.h> -#include <dirent.h> -#include <errno.h> -#include <fcntl.h> -#include <stdio.h> -#include <string.h> -#include <unistd.h> static String read_var(const String& name) { |