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/cp.cpp | |
parent | f7ede145b42043a81c7e50f85616e25875521b04 (diff) | |
download | serenity-b07bbf383d551eca9a50667cda0daec3eb74e806.zip |
Userland: Run clang-format on everything.
Diffstat (limited to 'Userland/cp.cpp')
-rw-r--r-- | Userland/cp.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Userland/cp.cpp b/Userland/cp.cpp index bfc263e0aa..03e3e0411c 100644 --- a/Userland/cp.cpp +++ b/Userland/cp.cpp @@ -1,11 +1,11 @@ -#include <unistd.h> -#include <fcntl.h> +#include <AK/AKString.h> +#include <AK/FileSystemPath.h> +#include <AK/StringBuilder.h> #include <assert.h> +#include <fcntl.h> #include <stdio.h> #include <sys/stat.h> -#include <AK/AKString.h> -#include <AK/StringBuilder.h> -#include <AK/FileSystemPath.h> +#include <unistd.h> int main(int argc, char** argv) { |