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/pidof.cpp | |
parent | 16d51d78c0ca292a12cc27fe0766fa86df25d8a9 (diff) | |
download | serenity-1eb048bed02e1c32e40c8f0df6688cdde06bb0d3.zip |
Userland: Remove a bunch of unused includes
As reported by CLion.
Diffstat (limited to 'Userland/Utilities/pidof.cpp')
-rw-r--r-- | Userland/Utilities/pidof.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Utilities/pidof.cpp b/Userland/Utilities/pidof.cpp index 07603e9a5a..625c50287b 100644 --- a/Userland/Utilities/pidof.cpp +++ b/Userland/Utilities/pidof.cpp @@ -4,12 +4,9 @@ * SPDX-License-Identifier: BSD-2-Clause */ -#include <AK/HashMap.h> #include <AK/String.h> -#include <AK/Vector.h> #include <LibCore/ArgsParser.h> #include <LibCore/ProcessStatisticsReader.h> -#include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |