diff options
author | Marcus Nilsson <brainbomb@gmail.com> | 2021-06-27 10:20:05 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-06-28 16:38:44 +0200 |
commit | beccc7e4fc10eef2584c74806e209b361cc4459b (patch) | |
tree | 407e76491eed79bd6d20f15cf677753d1e864f39 | |
parent | adb80c33ec64dd12b65b4655694f56cf385ad45d (diff) | |
download | serenity-beccc7e4fc10eef2584c74806e209b361cc4459b.zip |
Utilities/top: Remove unused header includes
-rw-r--r-- | Userland/Utilities/top.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Utilities/top.cpp b/Userland/Utilities/top.cpp index 7a50fd8255..4adae608c3 100644 --- a/Userland/Utilities/top.cpp +++ b/Userland/Utilities/top.cpp @@ -7,13 +7,11 @@ #include <AK/HashMap.h> #include <AK/JsonArray.h> #include <AK/JsonObject.h> -#include <AK/JsonValue.h> #include <AK/QuickSort.h> #include <AK/String.h> #include <AK/Vector.h> #include <LibCore/ArgsParser.h> #include <LibCore/ProcessStatisticsReader.h> -#include <fcntl.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> |