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/df.cpp | |
parent | 16d51d78c0ca292a12cc27fe0766fa86df25d8a9 (diff) | |
download | serenity-1eb048bed02e1c32e40c8f0df6688cdde06bb0d3.zip |
Userland: Remove a bunch of unused includes
As reported by CLion.
Diffstat (limited to 'Userland/Utilities/df.cpp')
-rw-r--r-- | Userland/Utilities/df.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Utilities/df.cpp b/Userland/Utilities/df.cpp index 7b80e6d4c3..b0620f5090 100644 --- a/Userland/Utilities/df.cpp +++ b/Userland/Utilities/df.cpp @@ -10,15 +10,11 @@ #include <AK/JsonObject.h> #include <AK/NumberFormat.h> #include <AK/String.h> -#include <AK/Vector.h> #include <LibCore/ArgsParser.h> #include <LibCore/File.h> -#include <fcntl.h> #include <inttypes.h> #include <stdio.h> #include <stdlib.h> -#include <string.h> -#include <unistd.h> static bool flag_human_readable = false; |