diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:31 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-07 11:49:31 +0200 |
commit | b07bbf383d551eca9a50667cda0daec3eb74e806 (patch) | |
tree | ee982b94d6df8d150a207892dcceb0cdd216934b /Userland/kill.cpp | |
parent | f7ede145b42043a81c7e50f85616e25875521b04 (diff) | |
download | serenity-b07bbf383d551eca9a50667cda0daec3eb74e806.zip |
Userland: Run clang-format on everything.
Diffstat (limited to 'Userland/kill.cpp')
-rw-r--r-- | Userland/kill.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Userland/kill.cpp b/Userland/kill.cpp index 7b1cb9a1d1..3a01d4f7eb 100644 --- a/Userland/kill.cpp +++ b/Userland/kill.cpp @@ -1,8 +1,8 @@ -#include <unistd.h> -#include <stdio.h> +#include <AK/AKString.h> #include <signal.h> +#include <stdio.h> #include <stdlib.h> -#include <AK/AKString.h> +#include <unistd.h> static void print_usage_and_exit() { @@ -38,4 +38,3 @@ int main(int argc, char** argv) perror("kill"); return 0; } - |